diff options
author | Patrick Spek <p.spek@tyil.nl> | 2022-07-28 08:34:50 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2022-07-28 08:34:58 +0200 |
commit | 96734273e0950c6d33fc81d7ffe67896e25808b3 (patch) | |
tree | fe389f07ccf32d74ca9b258960cb29dbc3111c9c | |
parent | f5106116910772c1c94577cae05ead0b96d1d5f7 (diff) | |
download | dotfiles-96734273e0950c6d33fc81d7ffe67896e25808b3.tar.gz dotfiles-96734273e0950c6d33fc81d7ffe67896e25808b3.tar.bz2 |
Remove -z from scrots
-rwxr-xr-x | .local/bin/mscrot | 2 | ||||
-rwxr-xr-x | .local/bin/sscrot | 2 | ||||
-rwxr-xr-x | .local/bin/wscrot | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/mscrot b/.local/bin/mscrot index 3848aaa..fedd0d9 100755 --- a/.local/bin/mscrot +++ b/.local/bin/mscrot @@ -3,4 +3,4 @@ p="~/pictures/scrot" cmd="mv \$f ${p} && notify-send \"Screenshot\" \"Saved to ${p}/\$f\"" -scrot -mz multi-%Y%m%d%H%M%S.png -e "${cmd}" +scrot -m multi-%Y%m%d%H%M%S.png -e "${cmd}" diff --git a/.local/bin/sscrot b/.local/bin/sscrot index 2d4c049..3e218d5 100755 --- a/.local/bin/sscrot +++ b/.local/bin/sscrot @@ -5,4 +5,4 @@ cmd="mv \$f ${p} && notify-send \"Screenshot\" \"Saved to ${p}/\$f\"" eval "$(get-focussed-monitor --coords)" -scrot -a $X,$Y,$W,$H -z screen-%Y%m%d%H%M%S.png -e "${cmd}" +scrot -a $X,$Y,$W,$H screen-%Y%m%d%H%M%S.png -e "${cmd}" diff --git a/.local/bin/wscrot b/.local/bin/wscrot index 2970713..979dbef 100755 --- a/.local/bin/wscrot +++ b/.local/bin/wscrot @@ -3,4 +3,4 @@ p="~/pictures/scrot" cmd="mv \$f ${p} && notify-send \"Screenshot\" \"Saved to ${p}/\$f\"" -scrot -bsz window-%Y%m%d%H%M%S.png -e "${cmd}" +scrot -bs window-%Y%m%d%H%M%S.png -e "${cmd}" |