dotfiles/.config/fish/functions/awww_set_wallpaper.fish

13 lines
285 B
Fish
Executable file

function awww_set_wallpaper
set wallpaper $argv[1]
# Start swww daemon if not running
if not pgrep awww-daemon > /dev/null
awww-daemon &
sleep 1
end
# Set wallpaper with animation
awww img "$wallpaper" \
--transition-type wipe
end