From 36026098905a3ed6cd82ebb2ccd95f4bc390b907 Mon Sep 17 00:00:00 2001 From: janabhumi Date: Mon, 17 Oct 2022 17:43:12 +0300 Subject: [PATCH] users: use flameshot service --- users/modules/window_manager/xmonad.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/users/modules/window_manager/xmonad.nix b/users/modules/window_manager/xmonad.nix index e86508d..75ca31a 100644 --- a/users/modules/window_manager/xmonad.nix +++ b/users/modules/window_manager/xmonad.nix @@ -4,7 +4,6 @@ home.packages = with pkgs; [ xclip # access x clipboard from a console dmenu # menu for x window system - flameshot # powerful yet simple to use screenshot software nitrogen # wallpaper manager ]; @@ -25,4 +24,18 @@ ${pkgs.nitrogen}/bin/nitrogen --restore & ''; }; + + services.flameshot = { + enable = true; + + # See: https://github.com/flameshot-org/flameshot/blob/master/flameshot.example.ini + settings = { + General = { + disabledTrayIcon = true; + savePathFixed = true; + showDesktopNotification = false; + showSidePanelButton = true; + }; + }; + }; }