Regenerated

This commit is contained in:
2026-04-11 14:38:04 +02:00
parent 71dee6d322
commit a0bccafc30
3 changed files with 545 additions and 328 deletions
+16 -5
View File
@@ -3342,9 +3342,9 @@ These are config files for waybar
#+END_SRC
** =generated/.config/waybar/style.css=
** =generated/.config/waybar/style-dark.css=
This file contains all css for waybar
#+BEGIN_SRC css :tangle generated/.config/waybar/style.css :noweb yes :mkdirp yes :eval never
#+BEGIN_SRC css :tangle generated/.config/waybar/style-dark.css :noweb yes :mkdirp yes :eval never
@import url("file:///home/henrov/.config/shared/colors.css");
/* --- Global --- */
@@ -3437,17 +3437,28 @@ window#waybar {
transition: none; /* disable hover animation */
}
/* Set custom/windows font to match workspace font */
/* Custom windows module */
#custom-windows {
background: linear-gradient(45deg, alpha(@blue, 0.5), alpha(@green, 0.5));
border-radius: 30px;
padding: 0 8px;
transition: all 0.3s ease;
}
/* Fully transparent when not on active workspace */
#custom-windows:not(.active) {
background: transparent;
color: transparent;
}
#custom-windows label {
font-size: 14px;
font-weight: bold;
color: @teal;
}
/* Active vs inactive workspace colors */
#workspaces button.active {
background: linear-gradient(45deg, @blue, @green);
font-size: 14px;
color: @base;
}