From f710b8e79d034fa0e1b00066e915084ccc0363fb Mon Sep 17 00:00:00 2001 From: Klagarge Date: Wed, 9 Sep 2026 17:28:09 +0200 Subject: [PATCH] feat: add general justfile --- Justfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Justfile diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..3fd11b1 --- /dev/null +++ b/Justfile @@ -0,0 +1,11 @@ +mod niri +mod xxh + +@default: + just --list + +# Deploy all configurations +all: + just niri::deploy + just xxh::deploy + @echo "All dotfiles deployed successfully!"