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
|
diff --git a/home/nogui/newt.nix b/home/nogui/newt.nix
new file mode 100644
index 0000000000000000000000000000000000000000..ea05ffcdee8fc80caf8960d2f7eb528c167599de
--- /dev/null
+++ b/home/nogui/newt.nix
@@ -0,0 +1,26 @@
+{ config, ... }:
+{
+ home.sessionVariables."NEWT_COLORS_FILE" = "${config.xdg.configHome}/newt/colors";
+ xdg.configFile."newt/colors".text = ''
+ root=#cdd6f4,#1e1e2e
+ border=#f5c2e7,#181825
+ window=#181825,#181825
+ shadow=#11111b,#11111b
+ title=#cba6f7,#181825
+ button=#181825,#cba6f7
+ button_active=#181825,#f9e2af
+ actbutton=#f9e2af,#181825
+ compactbutton=#f9e2af,#181825
+ checkbox=#f38ba8,#181825
+ actcheckbox=#181825,#f38ba8
+ entry=#a6e3a1,#181825
+ disentry=#181825,#181825
+ textbox=#a6e3a1,#181825
+ acttextbox=#cba6f7,#181825
+ label=#89b4fa,#181825
+ listbox=#a6e3a1,#181825
+ actlistbox=#cba6f7,#181825
+ sellistbox=#f38ba8,#181825
+ actsellistbox=#181825,#f9e2af
+ '';
+}
|