aboutsummaryrefslogtreecommitdiff
path: root/wallust/templates/waybar
blob: 7b3fb0294af9bb80f14794af5adda167c67ddd48 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
  font-family: Hack Nerd Font;
}

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

.modules-left, .modules-center, .modules-right {
  padding: 1px;
}

#clock,#network,#bluetooth,#backlight,#pulseaudio, #idle_inhibitor,
#battery,#disk,#temperature,#memory,#cpu {
  padding-left: 3px;
  padding-right: 3px;
  border-color: {{color8}};
  border-style: solid;
  border-width: 1px;
}
#network,#bluetooth,#backlight,#pulseaudio, #idle_inhibitor {
  border-left-width: 0px;
}
#disk,#temperature,#memory,#cpu {
  border-right-width: 0px;
}

#clock, #idle_inhibitor {
  background: {{color6}};
}
#network {
  background: {{color5}};
}
#bluetooth {
  background: {{color3}};
}
#backlight {
  background: {{color4}};
}
#pulseaudio {
  background: {{color2}};
}
#battery {
  background: {{color6}};
}
#disk {
  background: {{color5}};
}
#temperature {
  background: {{color3}};
}
#memory {
  background: {{color4}};
}
#cpu {
  background: {{color2}};
}

tooltip {
  background: {{color0}};
}
tooltip label {
  color: {{foreground}};
}

#tray menu {
  background: {{color0}};
  color: {{foreground}};
}

#bluetooth.off, #pulseaudio.muted, #network.disconnected, #battery.warning, #idle_inhibitor.deactivated {
  background: {{color0}};
}
#bluetooth.off {
  color: {{color3}};
}
#pulseaudio.muted {
  color: {{color2}};
}
#network.disconnected {
  color: {{color5}};
}
#battery.warning {
  color: {{color6}};
}
#battery.charging {
  background: {{color6}};
  color: {{foreground}};
}
#idle_inhibitor.deactivated {
  color: {{color6}}
}