nix/module/desktop/sway/module/Screenshot.nix

10 lines
322 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ key, ... }: {
text = ''
# Fullscreen screenshot.
bindsym $mod+${key.sway.screenshot.screen} exec grim -o $(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') - | wl-copy -t image/png
# Select screenshot.
bindsym $mod+${key.sway.screenshot.selection} exec grim -g "$(slurp -d)" - | wl-copy
'';
}