diff options
| author | Tri Asep Tumbara <57649797+triaseptmbr@users.noreply.github.com> | 2024-05-11 19:55:29 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-11 12:55:29 +0000 |
| commit | db8ee0df793246ed99152c490d29cdd21d45ed12 (patch) | |
| tree | c5d0810288b4cdc82bd4f0e84dbcc0803f51f9ec | |
| parent | 97687287bdfd332398b82a196b5f1feaec73f1d7 (diff) | |
| download | eibhear-db8ee0df793246ed99152c490d29cdd21d45ed12.tar.gz eibhear-db8ee0df793246ed99152c490d29cdd21d45ed12.tar.zst eibhear-db8ee0df793246ed99152c490d29cdd21d45ed12.zip | |
Fix the problem when taking a screenshot of the lf window (#1398)
Without -B option, the result of the screenshot is a blank picture.
| -rwxr-xr-x | .local/bin/maimpick | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/maimpick b/.local/bin/maimpick index 5de26c1..7717501 100755 --- a/.local/bin/maimpick +++ b/.local/bin/maimpick @@ -10,7 +10,7 @@ xclip_cmd="xclip -sel clip -t image/png" 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 -u -s pic-selected-"${output}" ;; - "current window") maim -q -d 0.2 -i "$(xdotool getactivewindow)" pic-window-"${output}" ;; + "current window") maim -B -q -d 0.2 -i "$(xdotool getactivewindow)" pic-window-"${output}" ;; "full screen") maim -q -d 0.2 pic-full-"${output}" ;; "a selected area (copy)") maim -u -s | ${xclip_cmd} ;; "current window (copy)") maim -q -d 0.2 -i "$(xdotool getactivewindow)" | ${xclip_cmd} ;; |
