Regenerated

This commit is contained in:
2026-04-02 21:32:09 +02:00
parent 0f099b9017
commit 5c67158bab
2 changed files with 330 additions and 520 deletions
+317 -425
View File
File diff suppressed because it is too large Load Diff
+13 -95
View File
@@ -2740,16 +2740,9 @@ These are config files for waybar
This file contains all css for waybar
#+BEGIN_SRC css :tangle generated/.config/waybar/config :noweb yes :mkdirp yes :eval never
/* --- Hyprland palette --- */
@define-color base rgba(30, 30, 46, 1.0);
@define-color inactive rgba(89, 89, 89, 0.667);
@define-color blue rgba(51, 204, 255, 0.933);
@define-color green rgba(0, 255, 153, 0.933);
@define-color text rgba(255, 255, 255, 1.0);
@define-color surface1 rgba(255, 255, 255, 0.08);
@define-color subtext1 rgba(255, 255, 255, 0.35);
@define-color red rgba(255, 0, 0, 0.90);
@define-color overlay1 rgba(255, 255, 255, 0.35);
@define-color yellow rgba(255, 215, 0, 0.95);
@define-color blue rgba(51, 204, 255, 0.933);
@define-color green rgba(0, 255, 153, 0.933);
@define-color text rgba(255, 255, 255, 1.0);
/* --- Base font --- */
* {
@@ -2757,80 +2750,34 @@ This file contains all css for waybar
font-size: 13px;
}
/* --- Waybar window --- */
window#waybar {
background: transparent;
color: @text;
transition: background-color 0.5s;
}
/* --- Workspaces buttons --- */
#workspaces button {
padding: 0 1px;
/* --- Custom Hyprscroll indicator (always filled gradient) --- */
#custom-workspaces_content {
padding: 0px 1px;
min-width: 80px;
background: transparent;
color: @text;
border: 2px solid @inactive;
border-radius: 10px;
}
#workspaces button:hover {
background-color: @surface1;
}
#workspaces button.active {
font-weight: bold;
color: @text;
border: 1px solid transparent;
background:
linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)) padding-box,
linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
}
/* --- Custom Hyprscroll indicator --- */
#custom-workspaces_content {
padding: 0 1px;
min-width: 80px;
background: transparent;
color: @text;
border: 2px solid @inactive;
border-radius: 10px;
}
/* Default (no overflow) */
#custom-workspaces_content.ok {
color: @subtext1;
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.03);
}
#custom-workspaces_content.ok:hover {
color: @text;
background-color: @surface1;
border: 1px solid rgba(255,255,255,0.18);
}
/* Overflow state */
#custom-workspaces_content.overflow {
font-weight: bold;
border: 1px dashed transparent;
/* Hover effect (slightly stronger highlight) */
#custom-workspaces_content:hover {
background:
linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)) padding-box,
linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
}
#custom-workspaces_content.overflow:hover {
background:
linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
}
/* Error state */
#custom-workspaces_content.error {
font-weight: bold;
border: 1px solid rgba(255,0,0,0.55);
background: rgba(255,0,0,0.15);
}
/* Hidden state */
/* Hidden state (optional) */
#custom-workspaces_content.hidden {
padding: 0;
margin: 0;
@@ -2850,35 +2797,6 @@ window#waybar {
margin: 0 5px;
padding: 0 2px;
}
/* States */
#idle_inhibitor.activated {
background-color: @green;
}
#battery.charging {
color: @green;
}
#network.disconnected {
background-color: @red;
}
/* Blinking for low battery */
@keyframes blink {
to { background-color: #fff; color: black; }
}
#battery.warning:not(.charging) {
color: white;
animation: blink 0.5s linear infinite alternate;
}
/* Generic custom modules */
[id^="custom-"] {
padding: 0 4px;
text-align: center;
}
#+END_SRC
** =.config/waybar/scripts/bluetooth-status.sh=