mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-19 05:12:47 +00:00
15 lines
390 B
Plaintext
15 lines
390 B
Plaintext
|
#!/bin/bash
|
||
|
if [[ "$#" -ge 1 ]]; then
|
||
|
rm ~/Pictures/.wallp
|
||
|
ln -s ~/Pictures/Awall/$@* ~/Pictures/.wallp
|
||
|
fi
|
||
|
kill $(pgrep -f "mpv.*wallpaper")
|
||
|
mpv --profile=wallpaper ~/Pictures/.wallp & disown
|
||
|
if [[ "$#" -ge 1 ]]; then
|
||
|
ffmpeg -i ~/Pictures/Awall/$@* -vframes 1 -y ~/Pictures/Awall/wall.png
|
||
|
wallp ~/Pictures/Awall/wall.png
|
||
|
else
|
||
|
sleep 5
|
||
|
fi
|
||
|
budgie-panel --replace & disown
|