From 8538d24ad4d4cfd601f3966ee1cfa11b90b76828 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 12 Sep 2022 09:10:55 +0200 Subject: [PATCH] feat: add flameshot keyboard shortcut --- home-manager/i3/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home-manager/i3/default.nix b/home-manager/i3/default.nix index 8d00123..f43d4fc 100644 --- a/home-manager/i3/default.nix +++ b/home-manager/i3/default.nix @@ -62,6 +62,7 @@ in keybindings = lib.mkOptionDefault { "${cfg.config.modifier}+Shift+o" = "exec xdg-open \"zoommtg://zoom.us/join?action=join&confno=4861587170&pwd=ZVk3aHphcWppY21ONjZOMVh6STN6dz09\""; + "${cfg.config.modifier}+Shift+s" = "exec flameshot gui"; }; startup = [ @@ -92,5 +93,14 @@ in arguments = [ "--update /home/mandlm/.config/i3/wallpapers/nix-wallpaper-dracula.png" ]; }; + services.flameshot = { + enable = true; + settings = { + General = { + showStartupLaunchMessage = false; + }; + }; + }; + services.unclutter.enable = true; }