about summary refs log tree commit diff
path: root/home/modules/profiles/base/config/waybar-settings.nix
blob: 2917e00dda38b37e803775745f0effd721c30a31 (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
{
  layer = "bottom";
  position = "top";
  height = 21;
  modules-left = [ "pulseaudio" "cpu" "memory" ];
  modules-center = [ "sway/workspaces" ];
  modules-right = [ "clock" ];

  modules = {
    "sway/workspaces" = {
      all-outputs = true;

      persistent_workspaces = {
        "α" = [ ];
        "β" = [ ];
        "γ" = [ ];
        "δ" = [ ];
        "ε" = [ ];
        "ζ" = [ ];
        "η" = [ ];
        "θ" = [ ];
        "ι" = [ ];
        "κ" = [ ];
      };
    };

    "clock" = {
      interval = 10;
      format = "{:  %a %d %H:%M}";
    };

    "cpu" = {
      interval = 5;
      format = " {usage:3}%";
    };

    "pulseaudio" = {
      format = "{icon} {volume}%";
      format-muted = "ﱝ  Muted";
      format-icons.default = [ " " " " " " ];
    };

    "memory" = {
      interval = 5;
      format = " {used:0.2f}GiB";
    };
  };
}