-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswaylock.nix
51 lines (47 loc) · 1.33 KB
/
swaylock.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ pkgs, ... }:
{
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
clock = true;
datestr = "";
screenshots = true;
indicator = true;
indicator-radius = 100;
indicator-thickness = 7;
effect-blur = "10x7";
effect-vignette = "0.5:0.5";
effect-pixelate = 5;
color="1e1e2e";
bs-hl-color="f5e0dc";
key-hl-color="a6e3a1";
caps-lock-bs-hl-color="f5e0dc";
caps-lock-key-hl-color="a6e3a1";
ring-color="b4befe";
ring-clear-color="f5e0dc";
ring-caps-lock-color="fab387";
ring-ver-color="89b4fa";
ring-wrong-color="eba0ac";
text-color="cdd6f4";
text-clear-color="f5e0dc";
text-caps-lock-color="fab387";
text-ver-color="89b4fa";
text-wrong-color="eba0ac";
layout-text-color="cdd6f4";
inside-color="00000000";
inside-clear-color="00000000";
inside-caps-lock-color="00000000";
inside-ver-color="00000000";
inside-wrong-color="00000000";
layout-bg-color="00000000";
layout-border-color="00000000";
line-color="00000000";
line-clear-color="00000000";
line-caps-lock-color="00000000";
line-ver-color="00000000";
line-wrong-color="00000000";
separator-color="00000000";
};
};
}