124 lines
1.7 KiB
CSS
Raw Normal View History

2024-03-21 17:26:30 +00:00
/* ===== Generic ===== */
2024-02-29 21:11:08 +00:00
* {
border: none;
font-family: "Ubuntu Nerd Font";
2024-05-31 11:04:39 +00:00
font-size: 13px;
2024-03-02 16:06:30 +00:00
padding: 0;
margin: 0;
2024-02-29 21:11:08 +00:00
}
2024-03-21 17:26:30 +00:00
/* ===== Waybar ===== */
2024-03-05 12:28:48 +00:00
#waybar {
2024-05-31 11:04:39 +00:00
background: rgba(32, 32, 32, 0.8);
/* background: transparent; */
2024-03-25 12:55:15 +00:00
/* background: rgba(54, 137, 230, 0.8); */
/* border-top: 1px solid rgba(54, 137, 230, 0.8); */
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-03-21 17:26:30 +00:00
/* ===== Modules ===== */
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-05 12:28:48 +00:00
#custom-gpu,
#custom-updates {
2024-05-31 11:04:39 +00:00
color: rgba(255, 255, 255, 0.8);
2024-03-25 12:55:15 +00:00
padding: 4px 8px;
margin: 2px;
margin-right: 0;
border-radius: 3px;
2024-03-07 12:09:05 +00:00
}
2024-03-21 17:26:30 +00:00
#custom-os {
font-size: 150%;
color: rgb(137, 220, 235);
2024-03-25 12:55:15 +00:00
/* background: transparent; */
2024-03-07 12:09:05 +00:00
}
2024-03-21 17:26:30 +00:00
#custom-updates.disabled {
opacity: 0;
2024-03-07 12:09:05 +00:00
}
2024-03-21 17:26:30 +00:00
/* ===== Taskbar ===== */
2024-03-07 12:09:05 +00:00
2024-03-21 17:26:30 +00:00
#taskbar button {
padding: 0px 5px;
2024-03-07 12:09:05 +00:00
}
2024-03-21 17:26:30 +00:00
#taskbar button:hover {}
#taskbar button.active {}
2024-02-29 21:11:08 +00:00
2024-03-21 17:26:30 +00:00
/* ===== Workspaces ===== */
2024-03-03 18:59:08 +00:00
2024-03-02 16:06:30 +00:00
#workspaces button {
2024-05-31 11:04:39 +00:00
margin-left: 8px;
2024-03-25 12:55:15 +00:00
color: white;
2024-03-02 22:49:00 +00:00
background: transparent;
text-shadow: none;
2024-03-03 18:59:08 +00:00
border-radius: 0;
2024-05-31 11:04:39 +00:00
opacity: 0.1;
2024-03-03 18:59:08 +00:00
}
#workspaces button.empty {
2024-05-31 11:04:39 +00:00
opacity: 0.1;
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#workspaces button.active {
2024-03-21 17:26:30 +00:00
opacity: 1.0;
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-21 17:26:30 +00:00
/* ===== Extra colors ===== */
2024-05-31 11:04:39 +00:00
/*#cpu {
2024-03-21 17:26:30 +00:00
background: rgb(50.15%, 92.07%, 99.48%);
}
#custom-gpu {
background: rgb(67.06%, 91.37%, 70.2%);
2024-02-29 21:11:08 +00:00
}
2024-03-21 17:26:30 +00:00
#memory {
background: rgb(100%, 81.7%, 68.38%);
}
#disk {
background: rgb(100%, 80.74%, 81.04%);
}
#network {
background: rgb(92.54%, 81.78%, 100%);
2024-03-25 12:55:15 +00:00
}
#wireplumber {
background: rgb(90%, 90%, 90%);
}
#clock {
background: rgb(90%, 90%, 90%);
2024-05-31 11:04:39 +00:00
}*/