mirror of https://codeberg.org/anemofilia/zero
radio: files: .local/bin: Remove screenshot
parent
a2da805db2
commit
62c1141d0f
|
@ -1,21 +0,0 @@
|
|||
#!/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
|
Loading…
Reference in New Issue