From ad2b182777bfd0a5ceef6e654df75ff13eb8b503 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sun, 6 Sep 2026 15:08:45 -0400 Subject: refactor: offload configuration to lsfg-vk --- justfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'justfile') diff --git a/justfile b/justfile index 54148ad..b190631 100644 --- a/justfile +++ b/justfile @@ -1,11 +1,8 @@ default: - echo "Available recipes: build, test, clean, generate-schema" - -generate-schema: - python3 scripts/generate_ts_schema.py + echo "Available recipes: build, test, clean" build: - python3 scripts/generate_ts_schema.py && sudo rm -rf node_modules && .vscode/build.sh + .vscode/build.sh test: scp "out/Decky LSFG-VK.zip" deck@192.168.0.6:~/Desktop @@ -18,4 +15,4 @@ cef: clean: rm -rf node_modules dist - sudo rm -rf /tmp/decky \ No newline at end of file + sudo rm -rf /tmp/decky -- cgit v1.2.3 From 8fd3e86ad0dcd74096e1dcbe2c7f5944b83c9bcc Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Thu, 10 Sep 2026 19:59:46 -0400 Subject: chore: add simple Deck deploy recipe --- justfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'justfile') diff --git a/justfile b/justfile index b190631..d3a7674 100644 --- a/justfile +++ b/justfile @@ -1,8 +1,11 @@ default: - echo "Available recipes: build, test, clean" + echo "Available recipes: build, deploy, test, clean" build: - .vscode/build.sh + pnpm build + +deploy: + ./scripts/deploy-to-deck.sh test: scp "out/Decky LSFG-VK.zip" deck@192.168.0.6:~/Desktop -- cgit v1.2.3 From 904e2e6131071c3b132d3148947b613c2830b1bb Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Thu, 10 Sep 2026 20:49:05 -0400 Subject: fix; correct flatpak extension sources --- justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'justfile') diff --git a/justfile b/justfile index d3a7674..b608987 100644 --- a/justfile +++ b/justfile @@ -8,7 +8,8 @@ deploy: ./scripts/deploy-to-deck.sh test: - scp "out/Decky LSFG-VK.zip" deck@192.168.0.6:~/Desktop + node --experimental-strip-types --test tests/steamLaunchOptions.test.ts + python3.12 -m unittest discover -s tests -p 'test_*.py' watch: ssh deck@192.168.0.6 "journalctl -f" -- cgit v1.2.3 From d2bfdafa92f3d31cc5392bf8a5a1f1df5c2358ce Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Fri, 11 Sep 2026 09:05:14 -0400 Subject: flatpak correctness, ui alignment, tests --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'justfile') diff --git a/justfile b/justfile index b608987..c935b76 100644 --- a/justfile +++ b/justfile @@ -8,7 +8,7 @@ deploy: ./scripts/deploy-to-deck.sh test: - node --experimental-strip-types --test tests/steamLaunchOptions.test.ts + node --experimental-strip-types --test tests/steamLaunchOptions.test.ts tests/nowPlaying.test.ts python3.12 -m unittest discover -s tests -p 'test_*.py' watch: -- cgit v1.2.3 From f3074fbe1427411dc3b5597d2e87918383299e3f Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Fri, 11 Sep 2026 13:47:52 -0400 Subject: feat: non steam tab, faster bulk actions --- justfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'justfile') diff --git a/justfile b/justfile index c935b76..57636a8 100644 --- a/justfile +++ b/justfile @@ -8,8 +8,7 @@ deploy: ./scripts/deploy-to-deck.sh test: - node --experimental-strip-types --test tests/steamLaunchOptions.test.ts tests/nowPlaying.test.ts - python3.12 -m unittest discover -s tests -p 'test_*.py' + pnpm test watch: ssh deck@192.168.0.6 "journalctl -f" -- cgit v1.2.3