2025-09-25 04:08:48 +03:30
|
|
|
@define-color bg #1c1c1c; /* Dark grey */
|
|
|
|
|
@define-color fg #d3d3d3; /* Light grey */
|
|
|
|
|
@define-color blk #000000; /* Black */
|
|
|
|
|
@define-color white #ffffff; /* White */
|
|
|
|
|
|
2025-06-29 21:22:43 +03:30
|
|
|
* {
|
2025-09-25 04:38:18 +03:30
|
|
|
font-family: "UbuntuMono", monospace;
|
|
|
|
|
font-size: 18px;
|
2025-09-25 04:08:48 +03:30
|
|
|
font-weight: bold;
|
2025-06-29 21:22:43 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window#waybar {
|
2025-09-25 04:08:48 +03:30
|
|
|
background-color: @bg;
|
|
|
|
|
color: @fg;
|
2025-06-29 21:22:43 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button {
|
2025-09-25 04:08:48 +03:30
|
|
|
padding: 0 6px;
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
background: transparent;
|
|
|
|
|
border-bottom: 3px solid @bg;
|
|
|
|
|
}
|
|
|
|
|
#workspaces button.active {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 3px solid @fg; /* Light grey */
|
|
|
|
|
}
|
|
|
|
|
#workspaces button.empty {
|
|
|
|
|
color: @white; /* White */
|
|
|
|
|
}
|
|
|
|
|
#workspaces button.empty.active {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 3px solid @fg; /* Light grey */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button.urgent {
|
|
|
|
|
background-color: @blk; /* Black */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
|
background: inherit;
|
|
|
|
|
box-shadow: inset 0 -3px @white; /* White */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#clock,
|
|
|
|
|
#custom-sep,
|
|
|
|
|
#battery,
|
|
|
|
|
#cpu,
|
|
|
|
|
#memory,
|
|
|
|
|
#disk,
|
|
|
|
|
#network,
|
|
|
|
|
#tray {
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
color: @white; /* White */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#custom-sep {
|
|
|
|
|
color: @bg; /* Dark grey */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#clock {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 4px solid @fg; /* Light grey */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#battery {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 4px solid @fg; /* Light grey */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#disk {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 4px solid @fg; /* Light grey */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#memory {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 4px solid @fg; /* Light grey */
|
2025-08-07 23:00:57 +03:30
|
|
|
}
|
|
|
|
|
|
2025-09-25 04:08:48 +03:30
|
|
|
#cpu {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 4px solid @fg; /* Light grey */
|
2025-08-07 23:00:57 +03:30
|
|
|
}
|
|
|
|
|
|
2025-09-25 04:08:48 +03:30
|
|
|
#network {
|
|
|
|
|
color: @fg; /* Light grey */
|
|
|
|
|
border-bottom: 4px solid @fg; /* Light grey */
|
2025-08-02 11:43:36 +03:30
|
|
|
}
|
|
|
|
|
|
2025-09-25 04:08:48 +03:30
|
|
|
#network.disconnected {
|
|
|
|
|
background-color: @blk; /* Black */
|
2025-08-02 11:43:36 +03:30
|
|
|
}
|
|
|
|
|
|
2025-09-25 04:08:48 +03:30
|
|
|
#tray {
|
|
|
|
|
background-color: @bg; /* Dark grey */
|
2025-06-29 21:22:43 +03:30
|
|
|
}
|
2025-08-10 11:30:42 +03:30
|
|
|
|