Arch 2025 rice. Also contains a newly inspired neovim config.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

213 lines
3.4 KiB

* {
/* `otf-font-awesome` is required to be installed for icons */
font-family: JetBrainsMono Nerd Font Mono;
/*font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;*/
font-size: 16px;
}
window#waybar {
background-color: rgba(35, 42, 46, 0.9);
color: #d3c6aa;
transition-property: background-color;
transition-duration: .5s;
padding-left: 4px;
padding-right: 4px;
border-radius: 12px;
}
window#waybar.hidden {
opacity: 0.2;
}
window#waybar.termite {
background-color: #3F3F3F;
}
window#waybar.chromium {
background-color: #000000;
border: none;
}
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: inherit;
text-shadow: inherit;
}
/* you can set a style on hover for any module like this */
#pulseaudio:hover {
background-color: #a37800;
}
#window, #workspaces {
background-color: #343f44;
border: 2px solid #7a8478;
border-radius: 10px;
}
#window {
padding-left: 4px;
padding-right: 4px;
border: 2px solid #a7c080;
}
#workspaces button {
padding: 0 8px;
background-color: transparent;
color: #d3c6aa;
}
#workspaces button.empty {
color: rgba(211,198,170,0.5);
}
#workspaces button.active {
background: rgba(0, 0, 0, 0.2);
box-shadow: inset 0 -3px #d3c6aa;
}
#workspaces button.focused {
background-color: #64727D;
box-shadow: inset 0 -3px #d3c6aa;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#mode {
background-color: #64727D;
box-shadow: inset 0 -3px #d3c6aa;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#wireplumber,
#backlight,
#network,
#pulseaudio,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#power-profiles-daemon,
#mpd {
padding: 0 10px;
color: #d3c6aa;
border-radius: 10px;
background-color: #343f44;
}
.modules-left,
.modules-right {
padding: 4px 4px 4px 4px;
}
/* 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;
}
#clock {
border: 2px solid #e67e80;
}
#battery {
border: 2px solid #7fbbb3;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
#power-profiles-daemon {
padding-right: 15px;
}
#power-profiles-daemon.performance {
background-color: #f53c3c;
color: #ffffff;
}
#power-profiles-daemon.balanced {
background-color: #2980b9;
color: #ffffff;
}
#power-profiles-daemon.power-saver {
background-color: #2ecc71;
color: #000000;
}
label:focus {
background-color: #000000;
}
#cpu {
border: 2px solid #83c092;
}
#memory {
background-color: #9b59b6;
}
#disk {
background-color: #964B00;
}
#backlight {
border: 2px solid #dbbc7f;
}
#network {
border: 2px solid #d699b6;
}
#wireplumber {
border: 2px solid #e67e80;
}
#custom-media {
background-color: #66cc99;
color: #2a5c45;
min-width: 100px;
}
#custom-media.custom-spotify {
background-color: #66cc99;
}
#custom-media.custom-vlc {
background-color: #ffa000;
}
#temperature {
background-color: #f0932b;
}
#temperature.critical {
background-color: #eb4d4b;
}