Regenerated

This commit is contained in:
2026-04-09 13:23:31 +02:00
parent 216d742a28
commit 35b9990bcf
3 changed files with 494 additions and 374 deletions
+328 -373
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -2860,7 +2860,7 @@ This file contains all css for waybar
@import url("file:///home/henrov/.config/shared/colors.css");
/* --- Global --- */
* {
* {
font-family:
Aporetic Sans Mono,
Iosevka Nerd Font,
+165
View File
@@ -0,0 +1,165 @@
@import url("file:///home/henrov/.config/shared/colors.css");
/* --- Global --- */
* {
font-family:
Aporetic Sans Mono,
Iosevka Nerd Font,
Roboto,
Helvetica,
Arial,
sans-serif;
font-size: 13px;
}
window#waybar {
background-color: transparent;
color: @text;
}
/* --------------------------------------------------------- */
/* MODULES CENTER BASE */
.modules-center > widget {
min-width: 80px;
color: @text;
font-weight: bold;
border-radius: 30px;
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
transition: all 0.2s ease;
}
.modules-center > box + box {
margin-left: 5px;
}
/* --- Group anchors default visible --- */
#custom-hardware-anchor,
#custom-connections-anchor {
min-width: 80px;
padding: 0 5px;
margin: 0 2px;
opacity: 1;
transition: opacity 0.2s ease, min-width 0.2s ease, padding 0.2s ease;
}
/* --- Hide anchors on hover of the group --- */
#hardware:hover #custom-hardware-anchor,
#connections:hover #custom-connections-anchor {
opacity: 0;
min-width: 0;
padding: 0;
margin: 0;
}
#hardware:hover,
#connections:hover {
min-width: 80px;
}
/* MODULES */
.modules-left > widget,
.modules-center > widget,
.modules-right > widget {
min-width: 80px;
color: @text;
font-weight: bold;
border-radius: 30px;
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
}
.modules-left > box + box,
.modules-center > box + box,
.modules-right > box + box {
margin-left: 5px;
}
.modules-left > widget label,
.modules-left > label ,
.modules-center > widget label,
.modules-center > label,
.modules-right > widget label,
.modules-right > label {
padding: 0px 5px;
transition: padding 0.2s ease;
}
/* --------------------------------------------------------- */
/* SLIDERS / SPECIAL MODULES */
#pulseaudio-slider {
padding: 0;
margin: 0;
}
#pulseaudio-slider slider {
min-height: 0px;
min-width: 0px;
opacity: 0;
border-radius: 30px;
background: linear-gradient(45deg, @blue, @green);
border: none;
box-shadow: none;
}
#pulseaudio-slider trough {
min-height: 10px;
min-width: 80px;
border-radius: 30px;
background: transparent;
}
#pulseaudio-slider highlight {
min-width: 10px;
border-radius: 30px;
background: linear-gradient(45deg, @blue, @green);
border: 2px solid transparent;
}
/* --------------------------------------------------------- */
/* STATES / SPECIALS */
#idle_inhibitor.activated {
background: linear-gradient(45deg, @blue, @green);
border: 2px solid transparent;
color: @base;
}
#battery.charging {
color: @green;
}
#battery.warning:not(.charging) {
color: white;
animation: blink 0.5s linear infinite alternate;
}
@keyframes blink {
to {
background-color: #ffffff;
color: black;
}
}
#network.disconnected {
background-color: @red;
}
#temperature.critical {
background-color: @red;
}
/* --------------------------------------------------------- */
/* GLOBAL MODULE SPACING */
#clock,
#idle_inhibitor,
#battery,
#cpu,
#memory,
#temperature,
#network,
#pulseaudio,
#tray {
margin: 0 5px;
padding: 0 10px;
}