Created
February 9, 2024 14:22
-
-
Save oesmith/bae2066264b69752fe4cb18afe2515d2 to your computer and use it in GitHub Desktop.
Take a screenshot of the current focused window in Sway
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
swaymsg -t get_tree \ | |
| jq -j '.. | select(.type?) | select(.focused).rect | "\(.x),\(.y) \(.width)x\(.height)"' \ | |
| grim -g - - \ | |
| wl-copy \ | |
&& notify-send -t 3000 "Screenshot" "Window captured" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment