about summary refs log tree commit diff
path: root/home/modules/profiles/base/config/waybar-style.nix
blob: f3c51cc2f1d762426f0ad53d734d55508ee78212 (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
58
59
60
61
{ neotheme }:

with neotheme.colors;

''
  * {
    border: none;
    border-radius: 0;
    font-family: "JetBrainsMono Nerd Font";
    font-size: 14px;
    min-height: 0;
  }

  window#waybar {
    background: #${background};
    color: #${foreground};
  }

  #workspaces button {
    padding: 0 8px;
    background: #${color4};
    color: #${background};
    border-bottom: 3px solid rgba (255, 255, 255, .2);
  }

  #workspaces button.focused {
    background-color: #${color4};
    border-bottom: 3px solid #${background};
  }

  #workspaces button:hover {
    box-shadow: inherit;
    text-shadow: inherit;
  }

  #clock,
  #cpu,
  #temperature,
  #backlight,
  #network,
  #memory,
  #language,
  #pulseaudio,
  #tray,
  #mode,
  #mpd,
  #custom-weather {
    padding: 0 10px;
    margin: 0 4px;
    color: #${background};
    background-color: #${color4};
    border-bottom: 3px solid rgba (255, 255, 255, .2);
  }

  @keyframes blink {
    to {
      background-color: #${color4};
      color: #${background};
    }
  }
''