You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
379 B
9 lines
379 B
#!/usr/bin/env sh |
|
# scrot refuses to work with double quotes |
|
# shellcheck disable=SC2016 |
|
|
|
if [ "$1" = "selection" ]; then |
|
notify-send "select an area" && scrot -e 'echo $f | xsel -i -b' -d 1 -s -q 1 && notify-send "screenshot saved, filename copied to clipboard" |
|
else |
|
scrot -e 'echo $f | xsel -i -b' -d 1 -q 1 && notify-send "screenshot saved, filename copied to clipboard" |
|
fi
|
|
|