diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-01-29 20:42:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-29 20:42:34 -0500 |
| commit | 9aa4483d8612b678983d7a2d8a80fe2d2e67aa9c (patch) | |
| tree | 3be59f38db5e6808f7e11aab70dce3c0d286f210 | |
| parent | 2601381237901054c2f62902f1f20fe58a554f97 (diff) | |
| parent | 489f5fbdb67c5f86958f057d54db34e1ce19b2a0 (diff) | |
| download | eibhear-9aa4483d8612b678983d7a2d8a80fe2d2e67aa9c.tar.gz eibhear-9aa4483d8612b678983d7a2d8a80fe2d2e67aa9c.tar.zst eibhear-9aa4483d8612b678983d7a2d8a80fe2d2e67aa9c.zip | |
Merge pull request #196 from owen8877/patch-1
Added window id from xdotool in mainpick.
| -rwxr-xr-x | .scripts/i3cmds/maimpick | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.scripts/i3cmds/maimpick b/.scripts/i3cmds/maimpick index f3f72fe..07d032f 100755 --- a/.scripts/i3cmds/maimpick +++ b/.scripts/i3cmds/maimpick @@ -1,9 +1,9 @@ #!/bin/sh -case "$(printf "a selected area\\ncurrent window\\nfull screen\\na selected area (copy)\\ncurrent window (copy)\\nfullscreen (copy)" | dmenu -l 6 -i -p "Screenshot which area?")" in +case "$(printf "a selected area\\ncurrent window\\nfull screen\\na selected area (copy)\\ncurrent window (copy)\\nfull screen (copy)" | dmenu -l 6 -i -p "Screenshot which area?")" in "a selected area") maim -s pic-selected-"$(date '+%y%m%d-%H%M-%S').png" ;; "current window") maim -i "$(xdotool getactivewindow)" pic-window-"$(date '+%y%m%d-%H%M-%S').png" ;; "full screen") maim pic-full-"$(date '+%y%m%d-%H%M-%S').png" ;; "a selected area (copy)") maim -s | xclip -selection clipboard -t image/png ;; - "current window (copy)") maim -i | xclip -selection clipboard -t image/png ;; + "current window (copy)") maim -i "$(xdotool getactivewindow)" | xclip -selection clipboard -t image/png ;; "full screen (copy)") maim | xclip -selection clipboard -t image/png ;; esac |
