diff options
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/printscreen | 3 | ||||
-rwxr-xr-x | .local/bin/screenshot | 17 |
2 files changed, 15 insertions, 5 deletions
diff --git a/.local/bin/printscreen b/.local/bin/printscreen deleted file mode 100755 index 588b15b..0000000 --- a/.local/bin/printscreen +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -scrot -q 100 -e 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' diff --git a/.local/bin/screenshot b/.local/bin/screenshot index 3eb9ec1..502888f 100755 --- a/.local/bin/screenshot +++ b/.local/bin/screenshot @@ -1,4 +1,17 @@ #!/bin/sh -sleep 0.2 -scrot --line mode=edge -s -e 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' +if [ ! -n "$1" ]; then + scrot -q 100 -e 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' +fi + +while [ -n "$1" ]; do # while loop starts + case "$1" in + -s) + sleep 0.2 + scrot --line mode=edge -i -s -e 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' + ;; + *) echo "Option $1 not recognized" ;; + esac + shift +done + |