rice/vpape-ctl
shockrah a7e8d5d6d7 * 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
2021-09-04 20:44:43 -07:00

12 lines
246 B
Bash
Executable File

#!/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