mirror of
https://github.com/Ascyii/scripts.git
synced 2026-01-01 04:44:24 -05:00
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Take a screenshot on wayland with swaymsg, jq, grim, slurp, and swappy
|
|
#
|
|
# Make sure the script is executable (chmod +x ./screenshot.sh)
|
|
#
|
|
# If you don't use sway, replace `swaymsg` with whatever your window manager
|
|
# gives you to query window information.
|
|
#
|
|
# Example sway configuration
|
|
#
|
|
# bindsym Print exec ~/.local/bin/screenshot.sh region
|
|
# bindsym Shift+Print exec ~/.local/bin/screenshot.sh window
|
|
# bindsym Ctrl+Print exec ~/.local/bin/screenshot.sh output
|
|
# bindsym Ctrl+Shift+Print exec ~/.local/bin/screenshot.sh all
|
|
|
|
# region|window|output|all
|
|
mode="$1"
|
|
|
|
case $mode in
|
|
"region")
|
|
grim -g "$(slurp)" - | swappy -f -
|
|
;;
|
|
"window")
|
|
grim -g "$(swaymsg -t get_tree | jq -j '.. | select(.type?) | select(.focused).rect | "\(.x),\(.y) \(.width)x\(.height)"')" - | swappy -f -
|
|
;;
|
|
"output")
|
|
grim -o $(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') - | swappy -f -
|
|
;;
|
|
"all")
|
|
grim - | swappy -f -
|
|
;;
|
|
*)
|
|
echo >&2 "unsupported command \"$mode\""
|
|
echo >&2 "Usage:"
|
|
echo >&2 "screenshot.sh <region|window|output|all>"
|
|
exit 1
|
|
;;
|
|
esac
|