This commit is contained in:
2024-07-16 12:59:22 -06:00
commit d0af37ab9c
66 changed files with 9675 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/usr/bin/env fish
function pywal
set -f wallpaper (string replace -r "file:\/\/" "" \
(gsettings get org.gnome.desktop.background picture-uri) \
| string replace -ra "\'" "")
switch $argv[1]
case light
echo "Setting up light theme"
# wal -lni $wallpaper --backend colorz -b FAFAFA
wal -lni $wallpaper -b FAFAFA
case dark
echo "Setting up dark theme"
# wal -ni $wallpaper --backend colorz
wal -ni $wallpaper
end
# systemctl restart --user emacs.service
end