Home

dotnix @03a1cfcfbc38e59a94a479466e042f33b03a6bbf - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / home / nogui / newt.nix
- raw -
 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
{ 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
  '';
}