diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-08-06 00:41:19 +0200 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-08-06 00:41:19 +0200 |
commit | 429a05561e47a1506894d14bc5df9eb2969fc982 (patch) | |
tree | 800d1395961b0f720b997a2a46033e0b211c6be1 | |
parent | Added randomize option (diff) | |
download | smart-wallpaper-429a05561e47a1506894d14bc5df9eb2969fc982.tar.gz smart-wallpaper-429a05561e47a1506894d14bc5df9eb2969fc982.tar.bz2 smart-wallpaper-429a05561e47a1506894d14bc5df9eb2969fc982.zip |
Added video support as well as compositor support for gifs and video
-rwxr-xr-x | smart-wallpaper | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/smart-wallpaper b/smart-wallpaper index 7c9c7a8..c76228d 100755 --- a/smart-wallpaper +++ b/smart-wallpaper @@ -20,6 +20,7 @@ cleanup() { if [[ $procid != '' ]]; then kill $procid fi + xsetroot -solid black } print_usage() { @@ -39,12 +40,29 @@ set_wallpaper() { kill $procid fi - if [[ $1 == *".gif" ]] && [ -f /usr/bin/gifview ]; then - gifsicle --resize $resolution $1 | gifview --animate -w root & - procid=$! + if [ -f /usr/bin/xwinwrap ]; then + if [ -f /usr/bin/gifview ] && [[ $1 == *".gif" ]]; then + echo "gifsicle --resize $resolution \$1 | gifview --animate -w \$2" > /tmp/smart-wallpaper-gifcmd + xwinwrap -ov -ni -g $resolution -- sh /tmp/smart-wallpaper-gifcmd $1 WID & + procid=$! + elif [ -f /usr/bin/mpv ] && [[ $1 == *".mp4" ]] || [[ $1 == *".mov" ]] || [[ $1 == *".avi" ]] || [[ $1 == *".wav" ]]; then + xwinwrap -ni -ov -g $resolution -- mpv --fullscreen --on-all-workspaces --no-config --no-input-default-bindings --no-stop-screensaver --loop-file --no-audio --no-osc --no-osd-bar -wid WID --quiet $1 & + procid=$! + else + feh --bg-fill $1 + procid='' + fi else - feh --bg-fill $1 - procid='' + if [ -f /usr/bin/gifview ] && [[ $1 == *".gif" ]]; then + gifsicle --resize $resolution $1 | gifview --animate -w root & + procid=$! + elif [ -f /usr/bin/mpv] && [[ $1 == *".mp4" ]] || [[ $1 == *".mov" ]] || [[ $1 == *".avi" ]] || [[ $1 == *".wav" ]]; then + mpv --fullscreen --on-all-workspaces --no-config --no-input-default-bindings --no-stop-screensaver --loop-file --no-audio --no-osc --no-osd-bar -wid 0 --quiet $1 & + procid=$! + else + feh --bg-fill $1 + procid='' + fi fi } |