* Fixing broken music background script

This commit is contained in:
shockrah 2022-04-03 22:22:29 -07:00
parent d839df9938
commit 019cf849ba

14
musicbg
View File

@ -4,12 +4,18 @@
kill -9 `pgrep xwinwrap | head -1` kill -9 `pgrep xwinwrap | head -1`
# pick out the music video we want to play in the background # pick out the music video we want to play in the background
base="$HOME/Videos/Music/" pape_name=`ls "${HOME}/Videos/Papes/" | dmenu -i -l 10 -p 'Pick a papes :^)'`
pape=`ls "${HOME}/Videos/Music/" | shuf | head -n 1`
mpv="mpv --wid WID --no-config --keepaspect=no --loop \ mpv="mpv -wid WID --no-config --keepaspect=no --loop \
--no-border --vd-lavc-fast --x11-bypass-compositor=no \ --no-border --vd-lavc-fast --x11-bypass-compositor=no \
--gapless-audio=yes --vo=x11 --hwdec=auto \ --gapless-audio=yes --vo=x11 --hwdec=auto \
--x11-name=mpvbg" --x11-name=mpvbg"
xwinwrap -g 1920x1080 -ni -fdt -sh rectangle -un -b -nf -ov -- $mpv "$base/$pape" & > /dev/null 2>&1 &
# The magic here happens with xwinwrap the flags given to mpv don't really matter
# unless you have an mpv config the flags below are pretty much the only flags you
# need to get this working
xwinwrap -g 1920x1080+0 -ov -b -un -sh rectangle -fdt -ni -- \
$mpv "$HOME/Videos/Papes/$pape_name" &
# welcome to the rice fields