100 lines
1.3 KiB
CSS
Raw Normal View History

2024-02-29 21:11:08 +00:00
* {
border: none;
font-family: "Ubuntu Nerd Font";
2024-03-07 12:09:05 +00:00
font-size: 14px;
2024-03-02 16:06:30 +00:00
padding: 0;
margin: 0;
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#waybar {
2024-03-07 12:09:05 +00:00
background: rgba(255, 255, 255, 0.9);
color: rgba(38, 41, 44, 0.9);
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#waybar.hidden {
2024-02-29 21:11:08 +00:00
opacity: 0.2;
}
2024-03-05 12:28:48 +00:00
#waybar #window {
opacity: 1;
transition: opacity 200ms ease;
}
#waybar.empty #window {
opacity: 0;
}
2024-02-29 21:11:08 +00:00
#clock,
#cpu,
#disk,
#memory,
#mpris,
#network,
2024-03-05 12:28:48 +00:00
#window,
2024-02-29 21:11:08 +00:00
#wireplumber,
2024-03-02 16:06:30 +00:00
#workspaces,
2024-03-02 22:49:00 +00:00
#custom-os,
2024-03-05 12:28:48 +00:00
#custom-gpu,
#custom-updates {
2024-03-07 12:09:05 +00:00
/* background: rgb(38, 41, 44); */
border-radius: 12px;
padding: 2px 10px;
margin: 4px;
}
#cpu {
background: rgb(50.15%, 92.07%, 99.48%);
}
#custom-gpu {
background: rgb(67.06%, 91.37%, 70.2%);
}
#memory {
background: rgb(100%, 81.7%, 68.38%);
}
#disk {
background: rgb(100%, 80.74%, 81.04%);
}
#network {
background: rgb(92.54%, 81.78%, 100%);
}
#wireplumber {
/* background: rgb(90.34%, 85.77%, 59.65%); */
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#custom-updates.disabled {
opacity: 0;
}
2024-03-03 18:59:08 +00:00
2024-03-02 16:06:30 +00:00
#workspaces button {
2024-03-07 12:09:05 +00:00
color: rgba(38, 41, 44, 0.9);
2024-03-02 16:06:30 +00:00
padding: 0px 5px;
2024-03-07 12:09:05 +00:00
opacity: 0.2;
2024-03-02 22:49:00 +00:00
background: transparent;
text-shadow: none;
2024-03-03 18:59:08 +00:00
border-radius: 0;
}
#workspaces button.empty {
2024-03-05 12:28:48 +00:00
opacity: 0.2;
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#workspaces button.active {
2024-03-07 12:09:05 +00:00
opacity: 0.9;
2024-03-05 12:28:48 +00:00
}
2024-03-03 18:59:08 +00:00
#workspaces button.visible {}
#workspaces button.urgent {}
#workspaces button.persistent {}
#workspaces button.hidden {}
2024-02-29 21:11:08 +00:00
2024-03-02 16:06:30 +00:00
#custom-os {
2024-03-05 12:28:48 +00:00
font-size: 150%;
2024-03-02 22:49:00 +00:00
color: rgb(137, 220, 235);
2024-03-05 12:28:48 +00:00
background: transparent;
2024-02-29 21:11:08 +00:00
}