dotfiles/home/private_dot_config/waybar/style.css
2025-01-23 04:51:04 +01:00

168 lines
2.8 KiB
CSS

@import "themes/mocha.css";
* {
font-family: 'CaskaydiaCove Nerd Font', 'Font Awesome 6 Free', 'Font Awesome 6 Brands', monospace;
font-size: 13px;
}
window#waybar {
background-color: rgba(43, 48, 59, 0);
/*border-bottom: 3px solid rgba(100, 114, 125, 0.5);*/
color: #ffffff;
transition-property: background-color;
transition-duration: .5s;
}
#workspaces {
border-radius: 20px;
background-color: @crust;
margin: 5px;
padding: 2px;
margin-left: 1rem;
}
#pulseaudio:hover {
background-color: @mauve;
color: @crust;
}
#workspaces button {
padding: 0 5px;
color: @text;
margin-left: 1px;
margin-right: 1px;
border-radius: 20px;
transition: all 300ms;
}
#workspaces button:hover {
background: @pink;
color: @crust;
border-radius: 20px;
}
#workspaces button.focused {
background-color: @mauve;
color: @crust;
border-radius: 20px;
}
#workspaces button.urgent {
background-color: @red;
color: @crust;
border-radius: 20px;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#wireplumber,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#power-profiles-daemon,
#window
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
.modules-right {
margin: 5px;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
label:focus {
background-color: #000000;
}
#window {
background-color: @crust;
color: @mauve;
margin: 5px;
border-radius: 20px;
padding-left: 10px;
padding-right: 13px;
}
#waybar.empty #window {
background: none;
}
#tray {
background-color: @crust;
border-radius: 20px;
color: @mauve;
padding-left: 10px;
padding-right: 13px;
}
#clock {
background-color: @crust;
border-radius: 20px;
color: @mauve;
padding-left: 10px;
padding-right: 10px;
}
#cpu {
background-color: @crust;
border-radius: 20px;
color: @mauve;
padding-left: 10px;
padding-right: 13px;
}
#memory {
background-color: @crust;
border-radius: 20px;
color: @mauve;
padding-left: 10px;
padding-right: 13px;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
#pulseaudio {
color: @mauve;
background-color: @crust;
border-radius: 20px;
padding-left: 10px;
padding-right: 13px;
transition: all 300ms;
}
#network {
color: @mauve;
background-color: @crust;
border-radius: 20px;
padding-left: 10px;
padding-right: 13px;
}