feat(quickshell): add dense telemetry bar #4

Open
luna wants to merge 18 commits from feat/quickshell-dense-bar into master
Showing only changes of commit 61da7748af - Show all commits
+16 -12
View File
@@ -89,7 +89,8 @@ in
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
plugins = [ inputs.hypr-chrome.packages.${pkgs.stdenv.hostPlatform.system}.default ]; # Unloaded for now; re-add together with the plugin.hyprchrome settings below.
# plugins = [ inputs.hypr-chrome.packages.${pkgs.stdenv.hostPlatform.system}.default ];
settings = { settings = {
# ---- colours (from colors.conf) ---- # ---- colours (from colors.conf) ----
fg_color = { _var = "rgba(eeeeeeff)"; }; fg_color = { _var = "rgba(eeeeeeff)"; };
@@ -131,7 +132,8 @@ in
decoration = { decoration = {
dim_special = 0.3; dim_special = 0.3;
rounding = 10; rounding = 25;
rounding_power = 1.0;
blur = { blur = {
enabled = true; enabled = true;
special = true; # blur behind the special workspace special = true; # blur behind the special workspace
@@ -158,16 +160,18 @@ in
allow_workspace_cycles = true; allow_workspace_cycles = true;
}; };
plugin.hyprchrome = { # Unloaded for now — Hyprland rejects plugin config for a plugin that is
enabled = true; # not loaded, so this stays commented until it goes back in `plugins` above.
glow_size = 12; # plugin.hyprchrome = {
glow_strength = 0.85; # enabled = true;
shadow_size = 24; # glow_size = 12;
shadow_color = lua "bg_color"; # glow_strength = 0.85;
shadow_offset = lua "{ 4, 8 }"; # shadow_size = 24;
outline_size = lua "2"; # shadow_color = lua "bg_color";
outline_color = lua "fg_color"; # shadow_offset = lua "{ 4, 8 }";
}; # outline_size = lua "2";
# outline_color = lua "fg_color";
# };
}; };
# ---- animations ---- # ---- animations ----