diff options
Diffstat (limited to 'modules/home/flameshot.nix')
| -rw-r--r-- | modules/home/flameshot.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/home/flameshot.nix b/modules/home/flameshot.nix deleted file mode 100644 index d238cec..0000000 --- a/modules/home/flameshot.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ config, ... }: - -{ - services.flameshot = { - enable = true; - - settings = let c = config.theme.colors; in { - General = { - savePath = "Pictures/Screenshots"; - filenamePattern = "%F_%T"; - - saveAfterCopy = true; - - uiColor = "#${c.bg}"; - contrastUiColor = "#${c.accent}"; - - startupLaunch = false; - }; - }; - }; -} |