dotfiles-mirror/config/waybar/style.css

118 lines
1.6 KiB
CSS
Raw Normal View History

2025-09-26 00:07:01 +03:30
@define-color bg #1c1c1c;
@define-color fg #B0B0B0;
@define-color blk #000000;
@define-color white #ffffff;
2025-09-25 04:08:48 +03:30
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
}
2025-09-26 00:07:01 +03:30
button,
#workspaces button,
#clock,
#battery,
#cpu,
#memory,
#disk,
#network,
#tray {
transition-property: none;
animation: none;
2025-09-26 03:15:06 +03:30
margin-top: 4px;
2025-09-26 00:07:01 +03:30
}
2025-06-29 21:22:43 +03:30
window#waybar {
2025-09-25 21:27:56 +03:30
background-color: @bg;
2025-09-25 04:08:48 +03:30
color: @fg;
2025-06-29 21:22:43 +03:30
}
#workspaces button {
2025-09-25 04:08:48 +03:30
padding: 0 6px;
2025-09-26 00:07:01 +03:30
color: @fg;
2025-09-25 04:08:48 +03:30
background: transparent;
border-bottom: 3px solid @bg;
}
2025-09-26 00:07:01 +03:30
2025-09-25 04:08:48 +03:30
#workspaces button.active {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 3px solid @fg;
2025-09-25 04:08:48 +03:30
}
2025-09-26 00:07:01 +03:30
2025-09-25 04:08:48 +03:30
#workspaces button.empty {
2025-09-26 00:07:01 +03:30
color: @fg;
2025-09-25 04:08:48 +03:30
}
2025-09-26 00:07:01 +03:30
2025-09-25 04:08:48 +03:30
#workspaces button.empty.active {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 3px solid @fg;
2025-09-25 04:08:48 +03:30
}
#workspaces button.urgent {
2025-09-26 00:07:01 +03:30
background-color: @blk;
2025-09-25 04:08:48 +03:30
}
2025-09-26 00:07:01 +03:30
/* Disable hover effects completely */
button:hover,
#workspaces button:hover {
background: transparent;
box-shadow: none;
color: inherit;
2025-09-25 04:08:48 +03:30
}
#clock,
#custom-sep,
#battery,
#cpu,
#memory,
#disk,
#network,
#tray {
padding: 0 8px;
2025-09-26 00:07:01 +03:30
color: @white;
2025-09-25 04:08:48 +03:30
}
#custom-sep {
2025-09-26 00:07:01 +03:30
color: @fg;
2025-09-25 04:08:48 +03:30
}
#clock {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 4px solid @fg;
2025-09-25 04:08:48 +03:30
}
#battery {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 4px solid @fg;
2025-09-25 04:08:48 +03:30
}
#disk {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 4px solid @fg;
2025-09-25 04:08:48 +03:30
}
#memory {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 4px solid @fg;
2025-08-07 23:00:57 +03:30
}
2025-09-25 04:08:48 +03:30
#cpu {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 4px solid @fg;
2025-08-07 23:00:57 +03:30
}
2025-09-25 04:08:48 +03:30
#network {
2025-09-26 00:07:01 +03:30
color: @fg;
border-bottom: 4px solid @fg;
2025-08-02 11:43:36 +03:30
}
2025-09-25 04:08:48 +03:30
#network.disconnected {
2025-09-26 00:07:01 +03:30
background-color: @blk;
2025-08-02 11:43:36 +03:30
}
2025-09-25 04:08:48 +03:30
#tray {
2025-09-26 00:07:01 +03:30
background-color: @bg;
2025-06-29 21:22:43 +03:30
}
2025-08-10 11:30:42 +03:30