2026-02-05 09:15:25 +01:00
|
|
|
* {
|
|
|
|
|
/* `otf-font-awesome` is required to be installed for icons */
|
2026-02-05 13:05:17 +01:00
|
|
|
/* font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif; */
|
2026-02-05 15:08:50 +01:00
|
|
|
font-family: JetBrainsMono Nerd Font, FontAwesome;
|
2026-02-05 18:34:34 +01:00
|
|
|
font-size: 14px;
|
2026-02-06 00:05:50 +01:00
|
|
|
font-weight: 500;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 00:05:50 +01:00
|
|
|
/* @define-color primary_color #8BD0F0;
|
|
|
|
|
@define-color secondary_color #393e46; */
|
|
|
|
|
|
|
|
|
|
@import "colors.css";
|
2026-02-05 19:07:57 +01:00
|
|
|
|
2026-02-05 09:15:25 +01:00
|
|
|
window#waybar {
|
2026-02-05 23:07:44 +01:00
|
|
|
background-color: rgba(0,0,0,0);
|
2026-02-06 15:13:35 +01:00
|
|
|
color: @primary;
|
2026-02-05 09:15:25 +01:00
|
|
|
transition-property: background-color;
|
|
|
|
|
transition-duration: .5s;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:49:54 +01:00
|
|
|
label:focus {
|
2026-02-05 09:15:25 +01:00
|
|
|
background-color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:49:54 +01:00
|
|
|
|
|
|
|
|
/* WORKSPACES */
|
2026-02-05 09:15:25 +01:00
|
|
|
button {
|
|
|
|
|
/* Use box-shadow instead of border so the text isn't offset */
|
|
|
|
|
box-shadow: inset 0 -3px transparent;
|
|
|
|
|
/* Avoid rounded borders under each button name */
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
|
|
|
|
button:hover {
|
|
|
|
|
background: inherit;
|
|
|
|
|
box-shadow: inset 0 -3px #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button {
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button:hover {
|
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button.focused {
|
|
|
|
|
background-color: #64727D;
|
|
|
|
|
box-shadow: inset 0 -3px #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button.urgent {
|
|
|
|
|
background-color: #eb4d4b;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:49:54 +01:00
|
|
|
|
|
|
|
|
/* MODULES */
|
2026-02-05 09:15:25 +01:00
|
|
|
|
2026-02-05 16:03:09 +01:00
|
|
|
.modules-left,
|
|
|
|
|
.modules-center,
|
|
|
|
|
.modules-right
|
|
|
|
|
{
|
2026-02-06 00:05:50 +01:00
|
|
|
background: @primary_container;
|
2026-02-06 15:13:35 +01:00
|
|
|
opacity: 0.8;
|
2026-02-05 19:07:57 +01:00
|
|
|
margin: 4px 10px;
|
2026-02-05 18:34:34 +01:00
|
|
|
padding: 0 10px;
|
2026-02-05 16:03:09 +01:00
|
|
|
border-radius: 15px;
|
|
|
|
|
}
|
2026-02-06 15:13:35 +01:00
|
|
|
|
2026-02-05 16:03:09 +01:00
|
|
|
.modules-left {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.modules-center {
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-05 09:15:25 +01:00
|
|
|
#clock,
|
2026-02-05 17:49:54 +01:00
|
|
|
#pulseaudio,
|
|
|
|
|
#bluetooth,
|
2026-02-05 09:15:25 +01:00
|
|
|
#cpu,
|
|
|
|
|
#memory,
|
|
|
|
|
#disk,
|
2026-02-05 17:49:54 +01:00
|
|
|
#privacy,
|
|
|
|
|
#cava,
|
|
|
|
|
#mpris,
|
2026-02-05 09:15:25 +01:00
|
|
|
#scratchpad,
|
2026-02-05 17:49:54 +01:00
|
|
|
#workspaces,
|
|
|
|
|
#tray,
|
|
|
|
|
#power
|
|
|
|
|
{
|
2026-02-05 18:34:34 +01:00
|
|
|
margin: 0 5px;
|
|
|
|
|
padding: 0 5px;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#clock {
|
2026-02-05 17:49:54 +01:00
|
|
|
border-top-left-radius: 15px;
|
|
|
|
|
border-bottom-left-radius: 15px;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:49:54 +01:00
|
|
|
#pulseaudio {
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:49:54 +01:00
|
|
|
#pulseaudio.muted {
|
2026-02-05 18:34:34 +01:00
|
|
|
background-color: rgba(255, 0, 55, 0.05);
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:49:54 +01:00
|
|
|
#pulseaudio:not(.muted):hover {
|
2026-02-05 18:34:34 +01:00
|
|
|
background-color: rgba(255, 255, 0, 0.1);
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#bluetooth {
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#bluetooth:hover {
|
|
|
|
|
background-color: rgba(0, 149, 255, 0.1);
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#hardware {
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#privacy {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin-right: 0;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#privacy-item {
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
border-top-right-radius: 15px;
|
|
|
|
|
border-bottom-right-radius: 15px;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#privacy-item.screenshare {
|
|
|
|
|
background-color: #cf5700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#privacy-item.audio-in {
|
|
|
|
|
background-color: #1ca000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#privacy-item.audio-out {
|
|
|
|
|
background-color: #0069d4;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:49:54 +01:00
|
|
|
#music{
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 13:05:17 +01:00
|
|
|
#cava {
|
2026-02-06 00:05:50 +01:00
|
|
|
color: @secondary;
|
2026-02-05 19:07:57 +01:00
|
|
|
opacity: 0.3;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 14:32:06 +01:00
|
|
|
#mpris {
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#scratchpad {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#scratchpad.empty {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#tray {
|
2026-02-06 00:22:12 +01:00
|
|
|
background-color: @on_primary;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#tray > .passive {
|
|
|
|
|
-gtk-icon-effect: dim;
|
2026-02-05 09:15:25 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-05 18:34:34 +01:00
|
|
|
#tray > .needs-attention {
|
|
|
|
|
-gtk-icon-effect: highlight;
|
2026-02-06 00:05:50 +01:00
|
|
|
background-color: @error;
|
2026-02-05 18:34:34 +01:00
|
|
|
}
|