gentoo-dots/.local/bin/wall.sh

23 lines
401 B
Bash
Raw Permalink Normal View History

2024-12-31 02:23:01 +01:00
#!/bin/sh
if [ "$#" -ne 1 ]; then
echo "Usage: wall.sh <path/to/wallpaper.png>"
exit 1
fi
cp "$1" ~/.cache/current_wallpaper.png
wal -i ~/.cache/current_wallpaper.png -stne
rm ~/.config/mako/config
cp ~/.cache/wal/colors-mako ~/.config/mako/config
makoctl reload
notify-send "Kleuren geupdate!" -t 2000
for service in swaybg waybar foot-server; do
dinitctl restart "$service"
done
exit 0