2018-10-04 18:00:58 +00:00
|
|
|
#!/bin/sh
|
2019-01-20 22:39:21 +00:00
|
|
|
# Pause mpd and send the pause key to all mpv videos:
|
2018-10-04 18:00:58 +00:00
|
|
|
mpc pause >/dev/null 2>&1
|
|
|
|
pauseallmpv >/dev/null 2>&1
|
2018-07-29 17:43:43 +00:00
|
|
|
|
2019-01-20 22:39:21 +00:00
|
|
|
i3lock -e -f -c 1d2021
|
2018-03-03 07:36:00 +00:00
|
|
|
|
2018-08-04 21:54:33 +00:00
|
|
|
# In five seconds, turn off display unless key press in last 4 seconds.
|
2018-10-04 18:00:58 +00:00
|
|
|
sleep 5 && [ 4000 -lt "$(xssstate -i)" ] && pgrep -x i3lock && xset dpms force off
|