mirror of https://codeberg.org/anemofilia/zero
22 lines
853 B
Bash
Executable File
22 lines
853 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"activewindow")
|
|
# Get active window geometry
|
|
eval $(xdotool getactivewindow getwindowgeometry --shell)
|
|
REGION="$((${WIDTH} + 10))x$((${HEIGHT}+10))+$((${X}-5))+$((${Y}-5))"
|
|
maim -Bg "${REGION}" | xclip -selection clipboard -t image/png;;
|
|
"selectwindow")
|
|
# Let the user select a window and get its geometry
|
|
eval $(xdotool selectwindow getwindowgeometry --shell)
|
|
REGION="$((${WIDTH} + 10))x$((${HEIGHT}+10))+$((${X}-5))+$((${Y}-5))"
|
|
maim -Bg "${REGION}" | xclip -selection clipboard -t image/png;;
|
|
"selectregion")
|
|
maim -s | xclip -selection clipboard -t image/png;;
|
|
*)
|
|
# Get current screen
|
|
SCREEN=$(xdotool get_desktop)
|
|
REGION="$(hostname):${SCREEN}.1"
|
|
maim -u | xclip -selection clipboard -t image/png;;
|
|
esac
|