diff options
Diffstat (limited to 'artix/Makefile')
| -rw-r--r-- | artix/Makefile | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/artix/Makefile b/artix/Makefile index e30ece5..9164d82 100644 --- a/artix/Makefile +++ b/artix/Makefile @@ -1,4 +1,21 @@ -all: stow +.PHONY = all config stow unstow artix lsp pac + +COLORSCHEME ?= slate + +all: + @echo COMMANDS: + @echo + @echo make stow + @echo make unstow + @echo COLORSCHEME=somesupportedcolorscheme make config + +config: unstow + set -a; \ + . colorscheme/$(COLORSCHEME).env; \ + set +a; \ + envsubst < template/alacritty/alacritty.toml > home/.config/alacritty/alacritty.toml; \ + envsubst < template/dunst/dunstrc > home/.config/dunst/dunstrc; \ + envsubst < template/waybar/style.css > home/.config/waybar/style.css stow: mkdir -p $$HOME/.local/bin/ $$HOME/.local/share/ $$HOME/.config/ |
