From e909aff9e14bf2bcc75b95f79ef7f7f481280bca Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sun, 24 Jul 2022 08:49:04 +0200 Subject: [PATCH] Screenshot shortcut --- home_manager/modules/sxhkd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home_manager/modules/sxhkd.nix b/home_manager/modules/sxhkd.nix index 3d9f6f0..aab4186 100644 --- a/home_manager/modules/sxhkd.nix +++ b/home_manager/modules/sxhkd.nix @@ -9,6 +9,7 @@ terminator update-background xorg.xbacklight + gnome.gnome-screenshot ]; services.sxhkd = let @@ -55,6 +56,7 @@ "XF86Audio{Next,Play,Prev}" = "playerctl {next,play-pause,previous}"; "super + alt + {Right,Down,Left}" = "playerctl {next,play-pause,previous}"; "XF86MonBrightness{Up,Down}" = "xbacklight {+,-}10%"; + "Print" = "gnome-screenshot -i"; }; }; }