summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-bspwm.nix
blob: 1e0a546ce756f735310c01559aaa7f52c037be47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  xdg.configFile = {
    "matugen/templates/bspwm-colors" = {
      enable = true;
      text =
        # sh
        ''
          #!/bin/bash
          bspc config focused_border_color  '{{colors.primary.default.hex}}'
          bspc config active_border_color   '{{colors.tertiary.default.hex}}'
          bspc config normal_border_color   '{{colors.outline.default.hex}}'
          bspc config presel_feedback_color '{{colors.secondary.default.hex}}'
        '';
    };
  };
}