aboutsummaryrefslogtreecommitdiff
path: root/tests/modules/programs/waybar/styling.nix
blob: bd73f2aafd2ef8655cb373fc3998aadd297dbd80 (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
{ config, lib, pkgs, ... }:

with lib;

let
  package = pkgs.writeScriptBin "dummy-waybar" "" // { outPath = "@waybar@"; };
in {
  config = {
    programs.waybar = {
      inherit package;
      enable = true;
      style = ''
        * {
            border: none;
            border-radius: 0;
            font-family: Source Code Pro;
            font-weight: bold;
            color: #abb2bf;
            font-size: 18px;
            min-height: 0px;
        }
        window#waybar {
            background: #16191C;
            color: #aab2bf;
        }
        #window {
            padding: 0 0px;
        }
        #workspaces button:hover {
            box-shadow: inherit;
            text-shadow: inherit;
            background: #16191C;
            border: #16191C;
            padding: 0 3px;
        }
      '';
    };

    nmt.script = ''
      assertPathNotExists home-files/.config/waybar/config
      assertFileContent \
        home-files/.config/waybar/style.css \
        ${./styling-expected.css}
    '';
  };
}