aboutsummaryrefslogtreecommitdiff
path: root/hypr/catppuccin/justfile
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-09-07 18:05:26 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-09-07 18:05:26 +0530
commit3e2e4914cf4aaef94a59540e94d0412a7db280ae (patch)
treeb2e293fdb6216e28e9a6bffd01b340e6a0298b00 /hypr/catppuccin/justfile
parent2cc42213f120ffe6a2f06f610bccc31f0c68c2e7 (diff)
removed catppuccin submodule
Diffstat (limited to 'hypr/catppuccin/justfile')
-rw-r--r--hypr/catppuccin/justfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/hypr/catppuccin/justfile b/hypr/catppuccin/justfile
new file mode 100644
index 0000000..0b4d3ef
--- /dev/null
+++ b/hypr/catppuccin/justfile
@@ -0,0 +1,20 @@
+# Print out all recipes when running `just`
+_default:
+ @just --list
+
+# Variables
+output := "themes"
+whiskers_cmd := "whiskers"
+template_path := "hyprland.tera"
+
+# Create the output directory
+setup:
+ mkdir -p {{output}}
+
+# Remove all files in the output directory
+clean:
+ rm -fv {{output}}/*.conf
+
+# Generate all four flavors
+all: setup
+ {{whiskers_cmd}} {{template_path}} \ No newline at end of file