summaryrefslogtreecommitdiffstats
path: root/.scripts/i3cmds
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-01-20 17:39:21 -0500
committerLuke Smith <luke@lukesmith.xyz>2019-01-20 17:39:21 -0500
commitb6d17549e9f7429d000ccb8bdb5d2717d299a265 (patch)
treef9bb09d6d60fa4701e4249731ed2cf6161fc2bda /.scripts/i3cmds
parent126264ea908bcb65162606df1f08b62af70659bc (diff)
downloadeibhear-b6d17549e9f7429d000ccb8bdb5d2717d299a265.tar.gz
eibhear-b6d17549e9f7429d000ccb8bdb5d2717d299a265.tar.zst
eibhear-b6d17549e9f7429d000ccb8bdb5d2717d299a265.zip
lockscreen simplification
Diffstat (limited to '.scripts/i3cmds')
-rwxr-xr-x.scripts/i3cmds/lockscreen14
1 files changed, 2 insertions, 12 deletions
diff --git a/.scripts/i3cmds/lockscreen b/.scripts/i3cmds/lockscreen
index b745a6a..456857f 100755
--- a/.scripts/i3cmds/lockscreen
+++ b/.scripts/i3cmds/lockscreen
@@ -1,19 +1,9 @@
#!/bin/sh
-
-rm -f /tmp/locked.png
-
-# If `imagemagick` is not installed, use a blank screen.
-[ -f /usr/bin/convert ] &&
-scrot -m -z /tmp/base.png &&
-pgrep -x dunst && notify-send -i ~/.scripts/pix/lock.png "Locking computer..." &&
-convert /tmp/base.png -blur 0x8 /tmp/locked.png
-
-# Pause music (mocp, mpd and send the pause key to all mpv videos):
-mocp -P >/dev/null 2>&1
+# Pause mpd and send the pause key to all mpv videos:
mpc pause >/dev/null 2>&1
pauseallmpv >/dev/null 2>&1
-i3lock -e -f -c 000000 -i /tmp/locked.png
+i3lock -e -f -c 1d2021
# In five seconds, turn off display unless key press in last 4 seconds.
sleep 5 && [ 4000 -lt "$(xssstate -i)" ] && pgrep -x i3lock && xset dpms force off