blob: 0b4d3efb63ef8209bed2c402e470f1c79253b80c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}}
|