diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-09-10 09:48:36 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-09-10 09:48:36 +0300 |
commit | db6706d3211ba2841140ec0a7101d9b740b86363 (patch) | |
tree | 1681eb8fe2c4a48ba5514f29ec2053f03c4e2326 /dotfiles/.local/bin | |
parent | 3f4a4f3cb9401772df85532314c9dfc2723bf619 (diff) | |
download | swayrice-db6706d3211ba2841140ec0a7101d9b740b86363.tar.gz swayrice-db6706d3211ba2841140ec0a7101d9b740b86363.zip |
swayresize: resize amount
* Resize by a custom amount of pixels; Default is 2 pixels.
* Added shortcut to sway config to resize by 10 pixels.
Diffstat (limited to 'dotfiles/.local/bin')
-rwxr-xr-x | dotfiles/.local/bin/swayresize | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dotfiles/.local/bin/swayresize b/dotfiles/.local/bin/swayresize index 9ae94c0..89368e9 100755 --- a/dotfiles/.local/bin/swayresize +++ b/dotfiles/.local/bin/swayresize @@ -1,9 +1,14 @@ #!/bin/sh # This script was made by `goferito` on Github. # Some cleanup by Luke. +# Some improvements by Yaroslav. [ -z "$1" ] && echo "No direction provided" && exit 1 + distanceStr="2 px or 2 ppt" +if [ -n "$2" ]; then + distanceStr="$(printf "%s px or %s ppt" "$2" "$2")" +fi moveChoice() { swaymsg resize "$1" "$2" "$distanceStr" | grep '"success":true' || \ |