diff options
-rwxr-xr-x | .local/bin/barpos | 2 | ||||
-rwxr-xr-x | .local/bin/screenshot | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.local/bin/barpos b/.local/bin/barpos index 5f36451..29e2512 100755 --- a/.local/bin/barpos +++ b/.local/bin/barpos @@ -4,7 +4,7 @@ BAR_CFG=$XDG_CONFIG_HOME/polybar/config.ini main () { if [ ! -n "$1" ]; then - toggle + toggle ; exit 0 fi case "$1" in 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/' } |