* newbga and newbga-audio for gif's and videos respectively

Basically this is how i am going to have gifs and video backgrounds
be seperate
+ vpape-ctl now being tracked as a way to control moving backgrounds
This commit is contained in:
shockrah
2021-09-04 20:44:43 -07:00
parent 0d0f48e44f
commit a7e8d5d6d7
4 changed files with 53 additions and 5 deletions

11
vpape-ctl Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
# mega autismo
# controlling background mpv with sockest yo
opt=`echo "Pause\nKill" | dmenu -i -l 10 -p 'Background control'`
case $opt in
Pause) echo 'cycle pause' | socat - /tmp/mpv-bg-socket;;
Kill) kill `pgrep xwinwrap`;;
esac