diff options
author | Adam <adam.moloney.stuck@gmail.com> | 2022-02-18 16:35:13 +0100 |
---|---|---|
committer | adamstuck <adam.moloney.stuck@gmail.com> | 2022-02-18 16:37:12 +0100 |
commit | 4e486522c0129cc69ce159773f6e6ff21d285d3f (patch) | |
tree | df5cdf0f0c302c87710b203e92854c1fd40d01bc /.config/i3 | |
parent | 1847b18bc4b05a0f040ff5e034706dcf206163ad (diff) |
scrot: fixed screenshot artifacts
Diffstat (limited to '.config/i3')
-rwxr-xr-x | .config/i3/extra/screenshot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/i3/extra/screenshot b/.config/i3/extra/screenshot index 1fb1ae7..3eb9ec1 100755 --- a/.config/i3/extra/screenshot +++ b/.config/i3/extra/screenshot @@ -1,4 +1,4 @@ #!/bin/sh sleep 0.2 -scrot -s -e 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' +scrot --line mode=edge -s -e 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' |