diff options
| author | furyan <mrchristenson@gmail.com> | 2018-07-01 14:33:23 +0200 |
|---|---|---|
| committer | furyan <mrchristenson@gmail.com> | 2018-07-01 14:33:23 +0200 |
| commit | a105dd3e907f7452eab234673e9960b1cdb47b81 (patch) | |
| tree | 0ba02590aa31a6e883511d134ddfa453d98b9cfc /.config | |
| parent | bd4bac8870ade1ae05e49c9aab24ee75a5c66722 (diff) | |
| download | eibhear-a105dd3e907f7452eab234673e9960b1cdb47b81.tar.gz eibhear-a105dd3e907f7452eab234673e9960b1cdb47b81.tar.zst eibhear-a105dd3e907f7452eab234673e9960b1cdb47b81.zip | |
Faster version of screen lock script by using scrot instead of import
Diffstat (limited to '.config')
| -rwxr-xr-x | .config/i3/lock.sh | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/.config/i3/lock.sh b/.config/i3/lock.sh index 47bf091..92da398 100755 --- a/.config/i3/lock.sh +++ b/.config/i3/lock.sh @@ -4,23 +4,18 @@ timeout="10000" # Take a screenshot of every screen available: +scrot -m -z /tmp/lock.png xdpyinfo -ext XINERAMA | sed '/^ head #/!d;s///' | { + cmd="convert" while IFS=' :x@,' read i w h x y; do - INDEX=$i - import -window root -crop ${w}x$h+$x+$y /tmp/head_$i.png + cmd+=" /tmp/lock.png -paint 1 -swirl 360 -crop ${w}x$h+$x+$y -geometry ${w}x$h+$x+$y ~/.config/i3/lock.png -gravity center -composite -matte" done + cmd+=" /tmp/screen.png" -# Add the lock to the swirled and blurred images: - for i in `seq 0 ${INDEX}`; - do - convert /tmp/head_${i}.png -paint 1 -swirl 360 ~/.config/i3/lock.png -gravity center -composite -matte /tmp/head_${i}.png; - done + eval $cmd } -#Combine all screen images into one big image -convert +append /tmp/head_*.png /tmp/screen.png - # Pause music (mocp and mpd): mocp -P mpc pause |
