diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-10-10 08:23:40 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-10-10 08:23:40 +0200 |
commit | f0c79300d963e608ccf6b83c4c213708423e01aa (patch) | |
tree | 668959f4629cd8d8bf886229dc3225d04a16560b /.local/bin/screenshot | |
parent | 0375f1c658571190d1b26ac8c12dac1b3ff8821e (diff) |
scripts: minor bugfixes
Diffstat (limited to '.local/bin/screenshot')
-rwxr-xr-x | .local/bin/screenshot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/screenshot b/.local/bin/screenshot index 3eed12b..eca47ea 100755 --- a/.local/bin/screenshot +++ b/.local/bin/screenshot @@ -2,12 +2,12 @@ main () { if [ ! -n "$1" ]; then - print_screen + print_screen ; exit 0 fi case "$1" in -s) - screenshot-select ;; + selection ;; *) echo "usage: screenshot [-s]" ;; esac @@ -17,7 +17,7 @@ print_screen () { scrot -q 100 -e 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' } -screenshot-select () { +selection () { sleep 0.2 scrot -l mode=edge -i -s -e 'xclip -sel clip -t image/png $f; mv $f ~/Pictures/screenshots/' } |