From 0dc687871a859f78652ad959f7f9a9df7ee1a2e9 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Tue, 14 May 2024 17:24:25 -0700 Subject: Restructuring --- home/flameshot.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 home/flameshot.nix (limited to 'home/flameshot.nix') diff --git a/home/flameshot.nix b/home/flameshot.nix new file mode 100644 index 0000000..d238cec --- /dev/null +++ b/home/flameshot.nix @@ -0,0 +1,21 @@ +{ 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; + }; + }; + }; +} -- cgit v1.2.3