nix-configs/other/scripts/desktop/window-screenshot.sh

9 lines
401 B
Bash
Raw Permalink Normal View History

2022-09-02 18:28:50 +00:00
unset x y w h
eval $(xwininfo -id $(xdotool getactivewindow) |
sed -n -e "s/^ \+Absolute upper-left X: \+\([0-9]\+\).*/x=\1/p" \
-e "s/^ \+Absolute upper-left Y: \+\([0-9]\+\).*/y=\1/p" \
-e "s/^ \+Width: \+\([0-9]\+\).*/w=\1/p" \
-e "s/^ \+Height: \+\([0-9]\+\).*/h=\1/p" )
2022-09-18 22:40:42 +00:00
echo -n "$x $y $w $h"
flameshot gui --region "${w}x${h}+${x}+${y}" -c -p ~/Pictures/screenshots/