Added wayland-screenshot.sh

This commit is contained in:
Alexander Rosenberg 2023-09-14 11:41:52 -07:00
parent 23feddfb60
commit 59dfe1565b
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

28
wayland-screenshot.sh Executable file
View File

@ -0,0 +1,28 @@
#!/usr/bin/zsh
local resp="$(fuzzel --index -d <<'EOF'
Whole screen
Current window
Selected area
EOF
)"
local outfile="$(date +'screenshot-%F--%H-%M-%S.png')"
case "${resp}" in
0)
grim "${outfile}"
;;
1)
local active_window="$(hyprctl -j activewindow)"
[[ activewindow == '{}' ]] ||
jq -r --null-input --argjson 'window' "${active_window}" \
'$window | "\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"' |
grim -g - "${outfile}"
;;
2)
local area="$(slurp 2>&1)"
[[ "${area}" == 'selection cancelled' ]] ||
grim -g "${area}" "${outfile}"
;;
esac