1
0
Fork 0
dotfiles/.local/bin/dmenumaim

18 lines
797 B
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
# this script provides a menu of screenshot options, using maim
2022-07-04 21:36:33 +02:00
2023-02-04 22:15:35 +01:00
# variables
2023-03-28 09:45:16 +02:00
dir=$XDG_PICTURES_DIR
2023-02-04 22:15:35 +01:00
output="$(date '+%y%m%d-%H%M-%S').png"
xclip_cmd="xclip -sel clip -t image/png"
2022-07-04 21:36:33 +02:00
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 "$dir/pic-selected-${output}" ;;
2023-03-28 09:45:16 +02:00
"current window") maim -q -d 0.2 -i "$(xdotool getactivewindow)" "$dir/pic-window-${output}" ;;
"full screen") maim -q -d 0.2 "$dir/pic-full-${output}" ;;
"a selected area (copy)") maim -u -s | ${xclip_cmd} ;;
2023-02-07 17:19:53 +01:00
"current window (copy)") maim -q -d 0.2 -i "$(xdotool getactivewindow)" | ${xclip_cmd} ;;
"full screen (copy)") maim -q -d 0.2 | ${xclip_cmd} ;;
2022-07-04 21:36:33 +02:00
esac