Files
colorshell/waybar/style.css
T
João Dias 41bf59df37 🎉 initial commit
2024-07-09 16:02:19 -03:00

247 lines
4.2 KiB
CSS

@import "mocha.css";
window {
/* `otf-font-awesome` is required to be installed for icons */
font-family: "0xProto Nerd Font Regular", sans-serif, "Font Awesome 5";
font-size: 12px;
border-radius: 10px;
color: @text;
}
* {
color: @text;
border-radius: 10px;
}
window#waybar {
background-color: transparent;
}
window#waybar.hidden {
opacity: 0.2;
}
/*
window#waybar.empty {
background-color: transparent;
}
window#waybar.solo {
background-color: #FFFFFF;
}
*/
window#waybar.termite {
background-color: alpha(@base, .1);
}
window#waybar.chromium {
background-color: @base;
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: 2px;
background: transparent;
transition: 120ms ease-in;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
button:hover {
background-color: alpha(shade(@blue, .3), .4);
}
/* you can set a style on hover for any module like this */
#pulseaudio:hover {
background-color: shade(@blue, 0.5);
}
#workspaces {
background: alpha(@base, .3);
border-radius: 18px;
padding: 4px;
padding-bottom: 3px;
padding-top: 3px;
}
#workspaces button {
border-radius: 50%;
padding: 2px 6px;
color: @blue;
font-size: 18px;
}
#workspaces button.active {
background: alpha(shade(@blue, .5), .6);
}
#workspaces button.urgent {
background-color: alpha(shade(@orange, 0.6), .3);
}
#custom-notifications {
background: alpha(@base, .3);
font-size: 16px;
padding-left: 10px;
padding-right: 12px;
}
#custom-notifications:hover {
background: alpha(@blue, .5);
}
#backlight {
background: alpha(@base, .3);
}
#backlight:hover {
background: alpha(@base, .5);
}
#mode {
background-color: alpha(@yellow, .3);
box-shadow: inset 0 -3px @text;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#wireplumber,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#power-profiles-daemon,
#mpd {
padding: 0 10px;
color: @text;
}
#window,
#workspaces {
margin: 0 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 {
background-color: alpha(@base, .3);
}
#battery {
background-color: alpha(@base, .3);
color: @text;
}
#battery.charging, #battery.plugged {
color: @text;
background-color: alpha(@base, .3);
}
#battery:not(.plugged):not(.charging) {
background-color: alpha(@blue, .35);
}
@keyframes blink {
to {
background-color: alpha(@crust, .3);
color: @orange;
}
}
/* Using steps() instead of linear as a timing function to limit cpu usage */
#battery.critical:not(.charging) {
background-color: alpha(shade(@orange, 0.5), .3);
color: @text;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: steps(12);
animation-iteration-count: infinite;
animation-direction: alternate;
}
label:focus {
background-color: shade(@blue, 0.4);
}
#cpu {
background-color: @base;
color: @text;
}
#memory {
background-color: @base;
}
#disk {
background-color: @base;
}
#pulseaudio {
background-color: alpha(@base, .3);
color: @text;
}
#wireplumber {
background-color: alpha(@base, .3);
color: @text;
}
#custom-media {
background-color: alpha(@base, .3);
color: @text;
min-width: 100px;
}
#custom-media.custom-spotify {
background-color: alpha(shade(@green, .65), .3);
}
#temperature {
background-color: alpha(@base, .3);
}
#temperature.critical {
background-color: alpha(@red, .3);
}
#tray {
background-color: alpha(@base, .3);
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background: alpha(@orange, .3);
}
#scratchpad {
background: alpha(@base, .3);
}
#scratchpad.empty {
background-color: transparent;
}