apps and waybar

This commit is contained in:
Reid 2024-12-13 19:36:41 -08:00
parent 3a08d19841
commit f509e8abbc
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
3 changed files with 100 additions and 23 deletions

View file

@ -104,24 +104,52 @@ window#waybar.floating #window {
color: @teal;
}
#battery {
color: @green;
#cpu {
color: @sapphire;
}
@keyframes blink {
to {
color: @text;
}
}
#memory {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
color: @lavender;
}
#memory.warning {
color: @peach;
animation-name: blink;
animation-duration: 3s;
}
#memory.critical {
color: @maroon;
animation-name: blink;
animation-duration: 2s;
}
#battery {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
color: @green;
}
/* this here is ditto */
#battery.charging {
color: @green;
}
#battery.warning:not(.charging) {
#battery.warning.discharging {
color: @peach;
animation-name: blink;
animation-duration: 3s;
}
#battery.critical:not(.charging) {
#battery.critical.discharging {
color: @maroon;
}
#network {
color: @sapphire;
animation-name: blink;
animation-duration: 2s;
}
#backlight {
@ -131,6 +159,9 @@ window#waybar.floating #window {
#pulseaudio {
color: @pink;
}
#pulseaudio.muted {
color: @overlay1;
}
#custom-power {
color: @red;
@ -149,13 +180,58 @@ window#waybar.floating #window {
color: @text;
}
tooltip {
box#playback {
background-color: transparent;
margin: 0 0;
padding: 0 0;
}
#mpris {
background-color: @surface0;
margin: 0 0.25em;
padding: 0.15em 0.5em;
border-radius: 1em;
}
#mpris.playing {
color: @accent;
background: @surface0;
}
#mpris.paused, #mpris.stopped {
color: @overlay1;
}
window decoration {
box-shadow: none;
}
tooltip, window.popup menu {
background: @base;
border: 1px solid @surface2;
font-size: 12px;
color: @text;
}
tooltip *, window.popup {
font-family: CozetteVector, monospace;
}
tooltip * {
padding: 0px;
margin: 0px;
color: @text;
font-family: CozetteVector, monospace;
}
window.popup separator {
background-color: @surface0;
}
window.popup menuitem:disabled {
color: @overlay1;
}
window.popup menuitem:hover {
background-color: @accent;
color: @surface0;
}
window.popup menuitem:hover > box {
background-color: transparent;
}