diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-07-08 09:40:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-08 09:40:21 -0400 |
| commit | 520ef9b66b686f8c70286d14a1719d4a15996216 (patch) | |
| tree | 74aa48406323965d8ee0eb792d75e8ae71028212 /.config | |
| parent | 30d139257feff76e402c17dd9236c0b9afb557e7 (diff) | |
| parent | d4f4c24071e997ed6587f9b959644a56ff50cd77 (diff) | |
| download | eibhear-520ef9b66b686f8c70286d14a1719d4a15996216.tar.gz eibhear-520ef9b66b686f8c70286d14a1719d4a15996216.tar.zst eibhear-520ef9b66b686f8c70286d14a1719d4a15996216.zip | |
Merge pull request #60 from ofwinterpassed/fasterscreenlock
Faster version of screen lock script by using scrot instead of import
Diffstat (limited to '.config')
| -rwxr-xr-x | .config/i3/lock.sh | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/.config/i3/lock.sh b/.config/i3/lock.sh index 47bf091..f154487 100755 --- a/.config/i3/lock.sh +++ b/.config/i3/lock.sh @@ -4,23 +4,22 @@ timeout="10000" # Take a screenshot of every screen available: +scrot -m -z /tmp/lock.png xdpyinfo -ext XINERAMA | sed '/^ head #/!d;s///' | { + cmd="convert /tmp/lock.png" + cmdend="" 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+=" -region ${w}x$h+$x+$y -paint 1 -swirl 360" + xc=$((x+(w/2)-79)) + yc=$((y+(h/2)-79)) + cmdend+=" ~/.config/i3/lock.png -geometry +${xc}+${yc} -composite -matte" done + cmd+="${cmdend} /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 |
