summaryrefslogtreecommitdiffstats
path: root/old/modules/lass/xresources.nix
blob: 00a9e5c918b82264837a71e27c7df0d806681d7a (plain)
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
52
53
54
55
56
57
{ config, lib, pkgs, ... }:

#TODO:
#prefix with Attribute Name
#ex: urxvt

#
#
with builtins;
with lib;


let

  inherit (import ../../lib { inherit pkgs; inherit lib; }) shell-escape;
  inherit (pkgs) writeScript;

in

{

  options = {
    services.xresources.enable = mkOption {
      type = types.bool;
      default = false;
      description = ''
        Whether to enable the automatic loading of Xresources definitions at display-manager start;
      '';
    };

    services.xresources.resources = mkOption {
      default = {};
      type = types.attrsOf types.str;
      example = {
        urxvt = ''
          URxvt*scrollBar: false
          URxvt*urgentOnBell: true
        '';
      };
      description = ''
        Xresources definitions.
      '';
    };
  };

  config =
    let
      cfg = config.services.xresources;
      xres = concatStringsSep "\n" (attrValues cfg.resources);

    in mkIf cfg.enable {
        services.xserver.displayManager.sessionCommands = ''
          echo ${shell-escape xres} | xrdb -merge
        '';
      };

}