blob: c17a1004c69ecdc2319dd0f2315de09d752c5bb7 (
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
94
95
96
97
98
99
100
101
102
103
104
105
|
@define-color bg #1a1b26;
@define-color fg #a9b1d6;
@define-color blk #32344a;
@define-color red #f7768e;
@define-color grn #9ece6a;
@define-color ylw #e0af68;
@define-color blu #7aa2f7;
@define-color mag #ad8ee6;
@define-color cyn #0db9d7;
@define-color brblk #444b6a;
@define-color white #ffffff;
* {
font-family: "0xProto Nerd Font", monospace;
font-size: 16px;
font-weight: bold;
}
window#waybar {
background-color: @bg;
color: @fg;
}
#workspaces button {
padding: 0 6px;
color: @cyn;
background: transparent;
border-bottom: 3px solid @bg;
}
#workspaces button.active {
color: @cyn;
border-bottom: 3px solid @mag;
}
#workspaces button.empty {
color: @white;
}
#workspaces button.empty.active {
color: @cyn;
border-bottom: 3px solid @mag;
}
#workspaces button.urgent {
background-color: @red;
}
button:hover {
background: inherit;
box-shadow: inset 0 -3px #ffffff;
}
#clock,
#custom-sep,
#battery,
#cpu,
#memory,
#disk,
#network,
#tray,
#pulseaudio {
padding: 0 8px;
color: @white;
}
#clock {
color: @cyn;
border-bottom: 4px solid @cyn;
}
#battery {
color: @mag;
border-bottom: 4px solid @mag;
}
#disk {
color: @ylw;
border-bottom: 4px solid @ylw;
}
#memory {
color: @mag;
border-bottom: 4px solid @mag;
}
#cpu {
color: @grn;
border-bottom: 4px solid @grn;
}
#network {
color: @blu;
border-bottom: 4px solid @blu;
}
#network.disconnected {
background-color: @red;
}
#tray {
background-color: #2980b9;
}
#pulseaudio {
color: @grn;
border-bottom: 4px solid @grn;
}
|