.config/waybar/style.css (view raw)
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 |
* {
border: none;
border-radius: 0;
font-family: "Monaspace Argon NF";
font-size: 12px;
font-weight: bold;
box-shadow: none;
text-shadow: none;
min-height: 0;
padding-left: 4px;
padding-right: 4px;
}
window#waybar {
background: #1e1e2e;
color: #cdd6f4;
}
#workspaces {
border-radius: 5px;
background: rgba(49, 50, 68, 1);
}
#workspaces button {
color: rgba(108, 112, 134, 1);
background: transparent;
}
#workspaces button.visible {
color: rgba(147, 153, 178, 1);
}
#workspaces button.focused {
border-top: 3px solid rgba(203, 166, 247, 1);
color: rgba(203, 166, 247, 1);
}
#workspaces button:hover {
background: rgba(203, 166, 247, 1);
color: rgba(30, 30, 46, 1);
box-shadow: inherit;
text-shadow: inherit;
}
#mode,
#battery,
#cpu,
#memory,
#network,
#pulseaudio,
#clock {
margin: 0px 10px 0px 10px;
min-width: 25px;
}
#battery.warning {
background: rgba(250, 179, 135, 1);
color: rgba(30, 30, 46, 1);
}
#battery.critical {
background: rgba(243, 139, 168, 1);
color: rgba(30, 30, 46, 1);
}
#battery.charging {
background: rgba(30, 30, 46, 1);
color: rgba(205, 214, 244, 1);
}
#battery.charging.full {
background: rgba(243, 139, 168, 1);
color: rgba(30, 30, 46, 1);
}
|