From e79498af8150788e73a1db6b699c3d774de1eb6c Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 12 Apr 2026 09:54:55 +0300 Subject: task 02: finalize day-1 Pebble setup workflow --- Justfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Justfile') diff --git a/Justfile b/Justfile index 2f5365e..3fa272d 100644 --- a/Justfile +++ b/Justfile @@ -3,6 +3,8 @@ # Justfile for Fedora Linux + Pebble SDK 4.9+ (2026) # ============================================= +emulator := "basalt" + # Default: show all available commands default: @just --list @@ -26,19 +28,19 @@ build: # Install to the basalt emulator (this also starts the emulator if it's not running) install: - pebble install --emulator basalt + pebble install --emulator {{emulator}} # Build + Install (the command you will use most often) dev: - pebble build && pebble install --emulator basalt + pebble build && pebble install --emulator {{emulator}} # Show live logs (run this in a **second** terminal) logs: - pebble logs + pebble logs --emulator {{emulator}} # Take a screenshot of the emulator screenshot: - pebble screenshot + pebble screenshot --emulator {{emulator}} # ───────────────────────────────────────────── # Emulator control -- cgit v1.2.3