soundcloud support for ytdl;newbga actually does second monitor check properly; new music video background script

This commit is contained in:
shockrah 2019-10-19 20:33:26 -07:00
parent 0326d64c96
commit 0776285cc5
3 changed files with 28 additions and 6 deletions

17
musicbg Executable file
View 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

3
newbga
View File

@ -37,8 +37,9 @@ c=`xrandr | grep ' connected' | wc -l`
if $c = "1" if $c = "1"
then then
exit exit
fi else
# Second monitor # Second monitor
xwinwrap -g 1920x1080+1920+0 -ni -fdt -sh rectangle -un -b -nf -ov -- $mpv "$base/$pape2" & > /dev/null 2>&1 & xwinwrap -g 1920x1080+1920+0 -ni -fdt -sh rectangle -un -b -nf -ov -- $mpv "$base/$pape2" & > /dev/null 2>&1 &
echo $! >> ${HOME}/.cache/mpvbg.pid echo $! >> ${HOME}/.cache/mpvbg.pid
echo "$pape1" >> $HOME/.cache/newbga_img echo "$pape1" >> $HOME/.cache/newbga_img
fi

8
ytdl
View File

@ -14,12 +14,16 @@ url=`echo '' | dmenu -p 'Enter a url'`
if [ -z "$url" ]; then exit; fi if [ -z "$url" ]; then exit; fi
# youtube-dl constantly breaks so --verbose is here for your pleasure # youtube-dl constantly breaks so --verbose is here for your pleasure
cmd='youtube-dl --extract-audio --verbose --audio-format mp3 -o' cmd='youtube-dl --extract-audio --verbose --audio-format mp3'
outplaylist="$HOME/Music/${dir}/%(autonumber)02d - %(title)s.%(ext)s" outplaylist="$HOME/Music/${dir}/%(autonumber)02d - %(title)s.%(ext)s"
outsingle="$HOME/Music/${dir}/%(title)s.%(ext)s" outsingle="$HOME/Music/${dir}/%(title)s.%(ext)s"
# youtube playlists
if echo "$url" | grep -q '&list='; then if echo "$url" | grep -q '&list='; then
$cmd "$outplaylist" "$url" $cmd -o "$outplaylist" "$url"
# soundcloud sets
elif echo "$url" | grep -q '/sets/'; then
$cmd -o "$outplaylist" "$url"
else else
$cmd "$outsingle" "$url" $cmd "$outsingle" "$url"
fi fi