Adds more wal theming

This commit is contained in:
Michel Fedde 2025-03-01 22:55:04 +01:00
parent 04f6af0726
commit af5ec3580c
15 changed files with 353 additions and 80 deletions

View file

@ -2,7 +2,4 @@
yay -S --needed sass
sass \
$HOME/.config/swaync/style/style.scss:$HOME/.config/swaync/style.css
swaync-client --reload-css
../../theming/compile.sh

View file

@ -1,6 +1,6 @@
#!/bin/env sh
yay -S --needed zen-browser-bin \
okular \
zathura zathura-pdf-mupdf \
onlyoffice-bin \
bitwarden

View file

@ -4,6 +4,7 @@ declare -A repositories
repositories['DSA']="ssh://git.php.fail/neintonine/dsa.git"
repositories['Notes']="ssh://git.php.fail/neintonine/notes.git"
repositories['gameconcepts']="ssh://git.php.fail/neintonine/game-concepts.git"
for path in "${!repositories[@]}"; do
url=${repositories[$path]}
@ -14,7 +15,6 @@ for path in "${!repositories[@]}"; do
continue
fi
echo "-- Cloning to $realPath";
git clone "$url" "$realPath"
done