Regenerated

This commit is contained in:
2026-04-02 21:34:55 +02:00
parent 5c67158bab
commit 566ce259d1
2 changed files with 562 additions and 330 deletions
+457 -317
View File
File diff suppressed because it is too large Load Diff
+105 -13
View File
@@ -2740,24 +2740,58 @@ 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 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 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);
/* --- Base font --- */
/* --- Global font --- */
* {
font-family: Aporetic Sans Mono, Iosevka Nerd Font, Roboto, Helvetica, Arial, sans-serif;
font-size: 13px;
}
/* --- Waybar window --- */
window#waybar {
background: transparent;
background-color: transparent;
color: @text;
border-bottom: 0px solid rgba(0,0,0,0);
transition: background-color 0.5s;
}
/* --- Custom Hyprscroll indicator (always filled gradient) --- */
/* =========================================================
* Workspaces buttons
* ========================================================= */
#workspaces button {
padding: 0px 1px;
min-width: 80px;
background-color: transparent;
color: @text;
border: 2px solid @inactive;
border-radius: 10px;
}
#workspaces button.active {
font-weight: bold;
border: 1px solid transparent;
background:
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
}
#workspaces button:hover {
background-color: @surface1;
}
/* =========================================================
* Custom Workspaces Content (Hyprscroll)
* Always filled gradient
* ========================================================= */
#custom-workspaces_content {
padding: 0px 1px;
min-width: 80px;
@@ -2765,19 +2799,16 @@ window#waybar {
font-weight: bold;
color: @text;
border: 1px solid transparent;
background:
linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
background: linear-gradient(45deg, @blue, @green);
transition: background 0.3s;
}
/* Hover effect (slightly stronger highlight) */
#custom-workspaces_content: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;
}
/* Hidden state (optional) */
#custom-workspaces_content.hidden {
padding: 0;
margin: 0;
@@ -2787,16 +2818,77 @@ window#waybar {
opacity: 0;
}
/* --- Right modules spacing --- */
/* =========================================================
* Notifications
* ========================================================= */
#custom-notifications {
margin: 0 4px;
padding: 0 4px;
}
#custom-notifications.empty {
color: @overlay1;
}
#custom-notifications.unread {
color: @yellow;
}
/* =========================================================
* Modules styling
* ========================================================= */
#clock,
#idle_inhibitor,
#battery,
#cpu,
#memory,
#temperature,
#network,
#pulseaudio,
#tray {
margin: 0 5px;
padding: 0 2px;
}
#idle_inhibitor.activated {
background-color: @green;
}
#battery.charging {
color: @green;
}
@keyframes blink {
to { background-color: #ffffff; color: black; }
}
#battery.warning:not(.charging) {
color: white;
animation: blink 0.5s linear infinite alternate;
}
#network.disconnected {
background-color: @red;
}
#temperature.critical {
background-color: @red;
}
/* =========================================================
* Layout adjustments
* ========================================================= */
#window,
#workspaces {
margin: 0 4px;
}
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
#+END_SRC
** =.config/waybar/scripts/bluetooth-status.sh=