This commit is contained in:
mjallen18
2025-12-01 14:50:23 -06:00
parent 73581fd8f0
commit 47e2b0caf8
15 changed files with 375 additions and 44 deletions

View File

@@ -176,14 +176,14 @@ in
{
monitor = "";
path = "/run/wallpaper.jpg"; # supports png, jpg, webp (no animations, though)
color = "rgba(25, 20, 20, 1.0)";
color = mkForce "rgba(25, 20, 20, 1.0)";
# all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations
blur_passes = "3"; # 0 disables blurring
blur_size = "7";
blur_passes = mkForce "3"; # 0 disables blurring
blur_size = mkForce "7";
noise = "0.0117";
contrast = "0.8916";
brightness = "0.8172";
brightness = mkForce "0.8172";
vibrancy = "0.1696";
vibrancy_darkness = "0.0";
}
@@ -195,7 +195,7 @@ in
text = "cmd[update:1000] echo -e \"$(LC_TIME=en_US.UTF-8 date +\"%A, %B %d\")\"";
color = "#eceff4";
font_size = "25";
font_family = "JetBrainsMono NFM";
font_family = lib.mkDefault "JetBrainsMono NFM";
position = "0, 350";
halign = "center";
valign = "center";
@@ -206,7 +206,7 @@ in
text = "cmd[update:1000] echo \"<span>$(date +\"%I:%M\")</span>\"";
color = "#eceff4";
font_size = "120";
font_family = "JetBrainsMono NFM Bold";
font_family = lib.mkDefault "JetBrainsMono NFM Bold";
position = "0, 230";
halign = "center";
valign = "center";
@@ -220,7 +220,7 @@ in
dots_spacing = 0.2;
dots_center = true;
font_size = 18;
font_family = "JetBrainsMono NFM Bold";
font_family = lib.mkDefault "JetBrainsMono NFM Bold";
position = "0, 0";
halign = "center";
valign = "center";
@@ -231,7 +231,7 @@ in
text = "cmd[update:30000] waybar-weather --hyprlock";
color = "#eceff4";
font_size = "25";
font_family = "JetBrainsMono NFM";
font_family = lib.mkDefault "JetBrainsMono NFM";
position = "-100, 100";
halign = "right";
valign = "bottom";
@@ -242,7 +242,7 @@ in
text = "cmd[update:1000] waybar-media";
color = "#eceff4";
font_size = "15";
font_family = "JetBrainsMono NFM";
font_family = lib.mkDefault "JetBrainsMono NFM";
position = "100, 100";
halign = "left";
valign = "bottom";
@@ -265,7 +265,7 @@ in
{
size = "200, 50";
position = "0, -80";
font_family = "JetBrainsMono NFM";
font_family = lib.mkDefault "JetBrainsMono NFM";
monitor = cfg.primaryDisplay;
dots_center = true;
fade_on_empty = true;
@@ -486,8 +486,8 @@ in
gaps_in = 5;
gaps_out = 10;
border_size = 1;
"col.active_border" = "rgb(8aadf4) rgb(24273A) rgb(24273A) rgb(8aadf4) 45deg";
"col.inactive_border" = "rgb(24273A) rgb(24273A) rgb(24273A) rgb(24273A) 45deg";
# "col.active_border" = "rgb(8aadf4) rgb(24273A) rgb(24273A) rgb(8aadf4) 45deg";
# "col.inactive_border" = "rgb(24273A) rgb(24273A) rgb(24273A) rgb(24273A) 45deg";
layout = "dwindle";
allow_tearing = cfg.allowTearing;
};