1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 00:49:15 +00:00
dotfiles/.config/fish/functions/awall.fish

16 lines
454 B
Fish

# Defined in /tmp/fish.JkZKD9/awall.fish @ line 2
function awall
if test $argv
rm ~/Videos/.wallp
ln -s ~/Videos/Walls/$argv* ~/Videos/.wallp
end
kill (pgrep -f "mpv.*wallpaper")
mpv --profile=wallpaper ~/Videos/.wallp & disown
sleep 5
budgie-panel --replace & disown
if test $argv
ffmpeg -i ~/Videos/Walls/$argv* -vframes 1 -y ~/Videos/Walls/wall.png
wallp ~/Videos/Walls/wall.png
end
end