177 lines
3.1 KiB
CSS
177 lines
3.1 KiB
CSS
|
|
/* Simple Style */
|
|
|
|
@define-color background #1d2021;
|
|
@define-color foreground #ebdbb2;
|
|
@define-color dim #928374;
|
|
@define-color yellow #fabd2f;
|
|
@define-color red #fb4934;
|
|
@define-color green #b8bb26;
|
|
|
|
* {
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-weight: bold;
|
|
min-height: 0;
|
|
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
|
|
font-size: 97%;
|
|
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
|
|
|
|
}
|
|
|
|
window#waybar {
|
|
background: @background;
|
|
color: @foreground;
|
|
transition-property: background-color;
|
|
transition-duration: 0.5s;
|
|
}
|
|
|
|
#taskbar button,
|
|
#workspaces button {
|
|
color: @foreground;
|
|
}
|
|
|
|
#taskbar button.active,
|
|
#workspaces button.active {
|
|
border-bottom: 1px solid green;
|
|
}
|
|
|
|
#taskbar button.urgent,
|
|
#workspaces button.urgent {
|
|
border-bottom: 2px solid red;
|
|
}
|
|
|
|
#submap {
|
|
border-bottom: 1px solid red;
|
|
}
|
|
|
|
#backlight,
|
|
#backlight-slider,
|
|
#battery,
|
|
#bluetooth,
|
|
#clock,
|
|
#cpu,
|
|
#disk,
|
|
#idle_inhibitor,
|
|
#keyboard-state,
|
|
#memory,
|
|
#mode,
|
|
#mpris,
|
|
#network,
|
|
#power-profiles-daemon,
|
|
#pulseaudio,
|
|
#pulseaudio-slider,
|
|
#taskbar button,
|
|
#taskbar,
|
|
#temperature,
|
|
#tray,
|
|
#window,
|
|
#wireplumber,
|
|
#workspaces,
|
|
#custom-backlight,
|
|
#custom-browser,
|
|
#custom-cava_mviz,
|
|
#custom-cycle_wall,
|
|
#custom-dot_update,
|
|
#custom-file_manager,
|
|
#custom-keybinds,
|
|
#custom-keyboard,
|
|
#custom-light_dark,
|
|
#custom-lock,
|
|
#custom-hint,
|
|
#custom-hypridle,
|
|
#custom-menu,
|
|
#custom-playerctl,
|
|
#custom-power_vertical,
|
|
#custom-power,
|
|
#custom-settings,
|
|
#custom-spotify,
|
|
#custom-swaync,
|
|
#custom-tty,
|
|
#custom-updater,
|
|
#custom-weather,
|
|
#custom-weather.clearNight,
|
|
#custom-weather.cloudyFoggyDay,
|
|
#custom-weather.cloudyFoggyNight,
|
|
#custom-weather.default,
|
|
#custom-weather.rainyDay,
|
|
#custom-weather.rainyNight,
|
|
#custom-weather.severe,
|
|
#custom-weather.showyIcyDay,
|
|
#custom-weather.snowyIcyNight,
|
|
#custom-weather.sunnyDay {
|
|
padding: 6px;
|
|
color: @foreground;
|
|
}
|
|
|
|
#battery.warning,
|
|
#disk.warning,
|
|
#memory.warning,
|
|
#cpu.warning {
|
|
border-top: 3px solid @background;
|
|
border-bottom: 3px solid yellow;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
color: @background;
|
|
}
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
background-color: @red;
|
|
color: white;
|
|
animation-name: blink;
|
|
animation-duration: 3.0s;
|
|
animation-timing-function: steps(12);
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
box-shadow: inset 0 -3px transparent;
|
|
}
|
|
|
|
/*-----Indicators----*/
|
|
#custom-hypridle.notactive,
|
|
#idle_inhibitor.activated {
|
|
color: #39FF14;
|
|
}
|
|
|
|
#battery.critical,
|
|
#disk.critical,
|
|
#memory.critical,
|
|
#cpu.critical {
|
|
border-top: 3px solid @background;
|
|
border-bottom: 3px solid red;
|
|
}
|
|
|
|
#temperature.critical {
|
|
background-color: red;
|
|
}
|
|
|
|
#battery.charging {
|
|
border-top: 3px solid @background;
|
|
border-bottom: 3px solid green;
|
|
}
|
|
|
|
#backlight-slider slider,
|
|
#pulseaudio-slider slider {
|
|
min-width: 0px;
|
|
min-height: 0px;
|
|
opacity: 0;
|
|
background-image: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
#backlight-slider trough,
|
|
#pulseaudio-slider trough {
|
|
min-width: 80px;
|
|
min-height: 5px;
|
|
border-radius: 5px;
|
|
background-color: @dim;
|
|
}
|
|
|
|
#backlight-slider highlight,
|
|
#pulseaudio-slider highlight {
|
|
min-height: 10px;
|
|
border-radius: 5px;
|
|
background-color: @green;
|
|
} |