2025-04-07 15:36:47 -04:00
|
|
|
* {
|
2025-05-09 18:43:27 -04:00
|
|
|
font-family: Iosevka Nerd Font, monospace;
|
2025-04-07 15:36:47 -04:00
|
|
|
min-height: 14px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
text-shadow: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window#waybar {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
background-color: @crust;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#custom-cava-system, #custom-cava-tt {
|
2025-04-27 11:11:51 -04:00
|
|
|
color: @mauve;
|
2025-04-07 15:36:47 -04:00
|
|
|
border-left: 0px;
|
|
|
|
|
border-right: 0px;
|
|
|
|
|
padding: 6px;
|
|
|
|
|
font-family: 'bargraph';
|
|
|
|
|
background: @base;
|
|
|
|
|
margin: 0px 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#window {
|
|
|
|
|
padding: 0px 8px 0px 8px;
|
|
|
|
|
background-color: @base;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#cpu {
|
|
|
|
|
color: @green;
|
|
|
|
|
padding: 0px 12px;
|
|
|
|
|
background: @base;
|
|
|
|
|
margin-left: 1px;
|
|
|
|
|
border-radius: 6px 0 0 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#memory {
|
|
|
|
|
color: @green;
|
|
|
|
|
padding: 0px 12px;
|
|
|
|
|
background: @base;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#temperature {
|
|
|
|
|
color: @green;
|
|
|
|
|
padding: 0px 12px;
|
|
|
|
|
background: @base;
|
|
|
|
|
margin-right: 1px;
|
|
|
|
|
border-radius: 0 6px 6px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#custom-gpu-temp {
|
|
|
|
|
padding: 0px 12px;
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
color: @blue;
|
|
|
|
|
background: @base;
|
|
|
|
|
border-radius: 0 6px 6px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#custom-gpu-mem {
|
|
|
|
|
padding: 0px 12px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: @blue;
|
|
|
|
|
background: @base;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#custom-gpu-usage {
|
|
|
|
|
padding: 0px 12px;
|
|
|
|
|
margin-left: 1px;
|
|
|
|
|
color: @blue;
|
|
|
|
|
background: @base;
|
|
|
|
|
border-radius: 6px 0 0 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tray {
|
|
|
|
|
background: @base;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* General Styling */
|
|
|
|
|
tooltip,
|
|
|
|
|
menu,
|
|
|
|
|
#workspaces,
|
|
|
|
|
#clock,
|
|
|
|
|
#pulseaudio,
|
|
|
|
|
#backlight,
|
|
|
|
|
#bluetooth,
|
|
|
|
|
#network,
|
|
|
|
|
#battery,
|
2025-04-27 11:11:51 -04:00
|
|
|
#custom-power,
|
|
|
|
|
#custom-notification,
|
|
|
|
|
#custom-mullvad,
|
2025-04-07 15:36:47 -04:00
|
|
|
#custom-weather {
|
|
|
|
|
background: @base;
|
|
|
|
|
padding: 8px 8px;
|
|
|
|
|
margin-left: 1px;
|
|
|
|
|
margin-right: 1px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-27 11:11:51 -04:00
|
|
|
#custom-mullvad,
|
2025-04-07 22:56:59 -04:00
|
|
|
#custom-notification {
|
|
|
|
|
padding-left: 12px;
|
|
|
|
|
padding-right: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-07 15:36:47 -04:00
|
|
|
#custom-power {
|
|
|
|
|
color: @red;
|
2025-04-07 22:56:59 -04:00
|
|
|
padding-left: 12px;
|
|
|
|
|
padding-right: 18px;
|
2025-04-07 15:36:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces {
|
|
|
|
|
background: @base;
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-left: 3px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
font-size: 16px;
|
2025-04-27 11:11:51 -04:00
|
|
|
color: @surface0;
|
2025-04-07 15:36:47 -04:00
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button {
|
|
|
|
|
padding: 0px 5px;
|
|
|
|
|
margin: 3px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border: none;
|
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button.active {
|
2025-04-27 11:11:51 -04:00
|
|
|
color: @base;
|
|
|
|
|
background: @mauve;
|
2025-04-07 15:36:47 -04:00
|
|
|
min-width: 20px;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#workspaces button:hover {
|
2025-04-27 11:11:51 -04:00
|
|
|
color: @text;
|
|
|
|
|
background: @mantle;
|
2025-04-07 15:36:47 -04:00
|
|
|
opacity: 1;
|
|
|
|
|
animation: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#clock {
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
color: @lavender;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#custom-launcher {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
transition: none;
|
|
|
|
|
padding: 0px 10px;
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
background: @base;
|
2025-04-27 11:11:51 -04:00
|
|
|
color: @sky;
|
2025-04-07 15:36:47 -04:00
|
|
|
border-radius: 0 6px 6px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pulseaudio {
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
margin-right: 1px;
|
2025-04-27 11:11:51 -04:00
|
|
|
color: @yellow;
|
2025-04-07 15:36:47 -04:00
|
|
|
border-radius: 6px 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#bluetooth,
|
|
|
|
|
#network {
|
2025-04-27 11:11:51 -04:00
|
|
|
color: @mauve;
|
2025-04-07 15:36:47 -04:00
|
|
|
border-radius: 6px;
|
|
|
|
|
margin: 0 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#network.speed {
|
|
|
|
|
background: @base;
|
|
|
|
|
padding: 0px 6px;
|
|
|
|
|
min-width: 10px;
|
|
|
|
|
color: @teal;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#network {
|
|
|
|
|
min-width: 30px;
|
|
|
|
|
padding: 0 7px 0 2px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|