116 lines
1.5 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-03-21 17:26:30 +00:00
font-size: 11px;
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-03-21 17:26:30 +00:00
background: rgba(38, 41, 44, 0.5);
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-21 17:26:30 +00:00
#taskbar,
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;
2024-03-21 17:26:30 +00:00
padding: 2px 4px;
2024-03-07 12:09:05 +00:00
margin: 4px;
}
2024-03-21 17:26:30 +00:00
#custom-os {
font-size: 150%;
color: rgb(137, 220, 235);
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-03-21 15:10:24 +00:00
/* color: rgba(38, 41, 44, 0.9); */
2024-03-02 16:06:30 +00:00
padding: 0px 5px;
2024-03-21 17:26:30 +00:00
opacity: 0.25;
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-21 17:26:30 +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 ===== */
/*#cpu {
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%);
}*/