49 lines
630 B
CSS
49 lines
630 B
CSS
* {
|
|
border: none;
|
|
font-family: "Ubuntu Nerd Font";
|
|
font-size: 14px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background: transparent;
|
|
}
|
|
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
#clock,
|
|
#cpu,
|
|
#disk,
|
|
#memory,
|
|
#mpris,
|
|
#network,
|
|
#wireplumber,
|
|
#workspaces,
|
|
#custom-os,
|
|
#custom-gpu {
|
|
color: @fg;
|
|
background: @bg;
|
|
margin: 0 8px;
|
|
transition: none;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0px 5px;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
background: transparent;
|
|
text-shadow: none;
|
|
}
|
|
|
|
#workspaces button:hover,
|
|
#workspaces button.active {
|
|
color: rgba(255, 255, 255, 1.0);
|
|
}
|
|
|
|
#custom-os {
|
|
font-size: 24px;
|
|
color: rgb(137, 220, 235);
|
|
}
|