dotfiles/config/i3/blurlock

9 lines
183 B
Plaintext
Raw Normal View History

2015-09-26 21:32:00 +02:00
#!/bin/bash
i3-msg workspace Lock
2016-11-23 18:56:15 +01:00
imgpath=$(mktemp).png
scrot "$imgpath"
convert "$imgpath" -blur 0x5 "$imgpath"
i3lock -f -i "$imgpath"
2015-09-26 21:32:00 +02:00
i3-msg workspace back_and_forth
2016-11-23 18:56:15 +01:00
rm "$imgpath"