summaryrefslogtreecommitdiff
path: root/waybar/.config/waybar/style.css
blob: 76e830ea0fc3efff1205066d327610844e16abf9 (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
106
107
108
109
110
111
112
113
114
115
116
* {
    border: none;
    border-radius: 0;
    font-family: "Terminus";
    font-size: 13px;
    min-height: 0;
}

#tags{
	margin-top: 2px;
	margin-left: 2px;
	padding: 1px;
	background-color: transparent;
}

#tags button {
	margin: 1px;
	padding: 2px;
	color: #93a1a1;
}

#tags button:hover {
	box-shadow: inherit;
	text-shadow: inherit;
	background: #073624;
}
	
#tags button.focused {
	color: #073642;
	background-color: #93a1a1;
	border: 2px solid #073624;
}

#tags button.urgent {
	color: #073642;
	background-color: tomato;
	border: 2px solid #073624;
}

#tags button.occupied {
	border: 2px solid #93a1a1;
}

window#waybar {
    background: transparent;
    color: white;
}

#window {
    font-weight: bold;
}

#mode {
    background: #64727D;
    border-bottom: 3px solid white;
}

#clock, #battery, #cpu, #memory, #network, #pulseaudio, #tray, #mode {
    padding: 0 3px;
    margin: 0 2px;
}

#clock {
    font-weight: bold;
    font-family: "Terminus";
}

#battery {
}

#battery icon {
    color: white;
}

#battery.charging {
}

@keyframes blink {
    to {
        background-color: #ffffff;
        color: black;
    }
}

#battery.warning:not(.charging) {
    color: #f53c3c;
    animation-name: blink;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

#cpu {
}

#memory {
}

#network {
}

#network.disconnected {
    background: #f53c3c;
}

#pulseaudio {
}

#pulseaudio.muted {
}


#tray {
}