diff --git a/config/home/hyprland.nix b/config/home/hyprland.nix index 6e8593b..4077691 100644 --- a/config/home/hyprland.nix +++ b/config/home/hyprland.nix @@ -109,7 +109,7 @@ in with lib; { exec-once = waybar exec-once = swaync exec-once = wallsetter - exec-once = swayidle -w timeout 150 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' + exec-once = swayidle -w timeout 10 'swaylock -f' timeout 20 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' before-sleep 'swaylock -f -c 000000' dwindle { pseudotile = true preserve_split = true diff --git a/config/home/packages.nix b/config/home/packages.nix index ea53f9d..3e8b269 100644 --- a/config/home/packages.nix +++ b/config/home/packages.nix @@ -8,7 +8,7 @@ swaynotificationcenter rofi-wayland imv transmission-gtk mpv gimp obs-studio blender-hip kdenlive godot_4 rustup audacity font-awesome spotify swayidle vim neovide neovim pavucontrol - element-desktop + element-desktop swaylock (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) # Import Scripts (import ./../scripts/emopicker9000.nix { inherit pkgs; }) diff --git a/config/home/swaylock.nix b/config/home/swaylock.nix index cb21446..b8b5c10 100644 --- a/config/home/swaylock.nix +++ b/config/home/swaylock.nix @@ -2,25 +2,21 @@ { home.file.".config/swaylock/config".text = '' - indicator + indicator-caps-lock + show-failed-attempts ignore-empty-password indicator-thickness=15 indicator-radius=150 image=~/Pictures/Wallpapers/Gangsta-Hoodie.jpeg - clock - effect-blur=7x5 - effect-vignette=0.5:0.5 ring-color=${config.colorScheme.colors.base0D} key-hl-color=${config.colorScheme.colors.base0F} line-color=00000000 inside-color=00000088 inside-clear-color=00000088 + separator-color=00000000 text-color=${config.colorScheme.colors.base05} text-clear-color=${config.colorScheme.colors.base05} ring-clear-color=${config.colorScheme.colors.base0D} - separator-color=00000000 - grace=2 - fade-in=0.5 font=Ubuntu ''; }