diff --git a/systems/artemision/stylix.nix b/systems/artemision/stylix.nix index af8ea65..06053da 100644 --- a/systems/artemision/stylix.nix +++ b/systems/artemision/stylix.nix @@ -1,15 +1,15 @@ { pkgs, ... }: -let - randWallpaper = pkgs.runCommand "stylix-wallpaper" { } '' - numWallpapers = - $((1 + $RANDOM % 10)) +# let +# randWallpaper = pkgs.runCommand "stylix-wallpaper" { } '' +# numWallpapers = +# $((1 + $RANDOM % 10)) - ''; -in +# in { stylix = { enable = true; - image = randWallpaper; + image = "${pkgs.hyprland}/share/hypr/wall2.png"; + #image = "/home/alice/Pictures/Screenshots/screenshot_2024-12-04-2030.png"; polarity = "dark"; }; diff --git a/users/alice/home/hypr/hyprlock.nix b/users/alice/home/hypr/hyprlock.nix index b90b2e6..7bd68a0 100644 --- a/users/alice/home/hypr/hyprlock.nix +++ b/users/alice/home/hypr/hyprlock.nix @@ -15,9 +15,10 @@ }; background = { monitor = ""; - #path = /home/me/someImage.png # supports png, jpg, webp (no animations, though) - path = "screenshot"; - color = "rgba(25, 20, 20, 1.0)"; + # path = /home/me/someImage.png # supports png, jpg, webp (no animations, though) + path = lib.mkForce "screenshot"; + # disabling due to stylix + # color = "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 @@ -55,17 +56,18 @@ dots_rounding = -1; # -1 default circle, -2 follow input-field rounding dots_fade_time = 200; # Milliseconds until a dot fully fades in dots_text_format = ""; # Text character used for the input indicator. Leave empty for a rectangle that will be rounded via dots_rounding (default). - outer_color = "rgb(151515)"; - inner_color = "rgb(200, 200, 200)"; - font_color = "rgb(10, 10, 10)"; + # disabling due to stylix + # outer_color = "rgb(151515)"; + # inner_color = "rgb(200, 200, 200)"; + # font_color = "rgb(10, 10, 10)"; font_family = "Noto Sans"; # Font used for placeholder_text, fail_text and dots_text_format. fade_on_empty = false; fade_timeout = 1000; # Milliseconds before fade_on_empty is triggered. placeholder_text = "Input Password..."; # Text rendered in the input box when it's empty. hide_input = false; rounding = -1; # -1 means complete rounding (circle/oval) - check_color = "rgb(204, 136, 34)"; - fail_color = "rgb(204, 34, 34)"; # if authentication failed, changes outer_color and fail message color + #check_color = "rgb(204, 136, 34)"; + #fail_color = "rgb(204, 34, 34)"; # if authentication failed, changes outer_color and fail message color fail_text = "$FAIL ($ATTEMPTS)"; # can be set to empty fail_timeout = 2000; # milliseconds before fail_text and fail_color disappears fail_transition = 300; # transition time in ms between normal outer_color and fail_color