soundcloud support for ytdl;newbga actually does second monitor check properly; new music video background script
This commit is contained in:
17
musicbg
Executable file
17
musicbg
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
pkill -9 xwinwrap
|
||||
|
||||
cacheFile="${HOME}/.cache/mpvbg.pid"
|
||||
|
||||
# pick out the music video we want to play in the background
|
||||
base="$HOME/Videos/Music/"
|
||||
pape=`ls "${HOME}/Videos/Music/" | shuf | head -n 1`
|
||||
|
||||
mpv="mpv --wid WID --no-config --keepaspect=no --loop \
|
||||
--no-border --vd-lavc-fast --x11-bypass-compositor=no \
|
||||
--gapless-audio=yes --vo=x11 --hwdec=auto \
|
||||
--x11-name=mpvbg"
|
||||
|
||||
xwinwrap -g 1920x1080 -ni -fdt -sh rectangle -un -b -nf -ov -- $mpv "$base/$pape" & #> /dev/null 2>&1 &
|
||||
echo $! > ${HOME}/.cache/mpvmusic.pid
|
||||
|
||||
Reference in New Issue
Block a user