summaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.config/hypr/hyprlock.conf
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-24 18:37:14 -0600
committerCraig Jennings <c@cjennings.net>2026-01-24 18:37:14 -0600
commit6ce385c2be62492d43ef90b9525d38edc7cd8190 (patch)
tree8f3c70f73b558e71de23c8a07f29494bb4554bcc /dotfiles/hyprland/.config/hypr/hyprlock.conf
parent9bc93ba94a6f14c2ff6f11f6f85d100dd2c3ffb2 (diff)
feat(archsetup): add Hyprland/Wayland desktop environment support
- Add DESKTOP_ENV config variable (dwm/hyprland/none, default: hyprland) - Create wayland() and hyprland() installation functions - Add display_server/window_manager conditional step wrappers - Create dotfiles/hyprland/ with full config suite: - hyprland.conf with keybindings translated from DWM + sxhkd - waybar config matching conky status bar - hypridle/hyprlock for screen locking - wofi config matching rofi theme - gammastep config for Wayland (replaces redshift) - Add Hyprland validation tests to validation.sh - Update archsetup.conf.example with DESKTOP_ENV option
Diffstat (limited to 'dotfiles/hyprland/.config/hypr/hyprlock.conf')
-rw-r--r--dotfiles/hyprland/.config/hypr/hyprlock.conf75
1 files changed, 75 insertions, 0 deletions
diff --git a/dotfiles/hyprland/.config/hypr/hyprlock.conf b/dotfiles/hyprland/.config/hypr/hyprlock.conf
new file mode 100644
index 0000000..b4dcfb8
--- /dev/null
+++ b/dotfiles/hyprland/.config/hypr/hyprlock.conf
@@ -0,0 +1,75 @@
+# Hyprlock configuration
+# Matching DWM colors: gray1=#222222, accent=#daa520
+
+general {
+ disable_loading_bar = false
+ hide_cursor = true
+ grace = 0
+ no_fade_in = false
+}
+
+background {
+ monitor =
+ path = screenshot
+ blur_passes = 3
+ blur_size = 8
+ noise = 0.0117
+ contrast = 0.8916
+ brightness = 0.8172
+ vibrancy = 0.1696
+ vibrancy_darkness = 0.0
+}
+
+input-field {
+ monitor =
+ size = 300, 50
+ outline_thickness = 3
+ dots_size = 0.33
+ dots_spacing = 0.15
+ dots_center = true
+ dots_rounding = -1
+ outer_color = rgb(444444)
+ inner_color = rgb(222222)
+ font_color = rgb(bbbbbb)
+ fade_on_empty = true
+ fade_timeout = 1000
+ placeholder_text = <i>Password...</i>
+ hide_input = false
+ rounding = 0
+ check_color = rgb(daa520)
+ fail_color = rgb(d9534f)
+ fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
+ fail_transition = 300
+ capslock_color = rgb(f0ad4e)
+ numlock_color = -1
+ bothlock_color = -1
+ invert_numlock = false
+ swap_font_color = false
+ position = 0, -20
+ halign = center
+ valign = center
+}
+
+label {
+ monitor =
+ text = $TIME
+ text_align = center
+ color = rgb(bbbbbb)
+ font_size = 64
+ font_family = FiraCode Nerd Font Mono
+ position = 0, 80
+ halign = center
+ valign = center
+}
+
+label {
+ monitor =
+ text = $USER
+ text_align = center
+ color = rgb(daa520)
+ font_size = 20
+ font_family = FiraCode Nerd Font Mono
+ position = 0, -80
+ halign = center
+ valign = center
+}