1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-30 22:18:58 +00:00
dotfiles/.config/fish/functions/awall.fish

15 lines
442 B
Fish

# Defined in /tmp/fish.d5qSF9/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
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