blob: d7f6e1ff24b0e4b26dd87c8835c710145e01bf49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ config, ... }:
{
services.flameshot = {
settings = let c = config.theme.colors; in {
General = {
savePath = "Pictures/Screenshots";
filenamePattern = "%F_%T";
saveAfterCopy = true;
uiColor = "#${c.bg}";
contrastUiColor = "#${c.accent}";
startupLaunch = false;
};
};
};
}
|