diff --git a/modules/users/crow/configs/hypr/hyprlock.conf b/modules/users/crow/configs/hypr/hyprlock.conf
index bae066a..366d0cc 100644
--- a/modules/users/crow/configs/hypr/hyprlock.conf
+++ b/modules/users/crow/configs/hypr/hyprlock.conf
@@ -1,3 +1,11 @@
+# Colors
+$white = rgba(255,255,255,1)
+$transparent = rgba(0,0,0,0.2)
+$black = rgba(0,0,0,1)
+
+$error = rgba(255,0,0,1)
+$warning = rgba(255,193,7,1)
+
# BACGROUND
background {
monitor =
@@ -16,6 +24,19 @@ general {
disable_loading_bar = true
}
+# TIME
+label {
+ monitor =
+ text = cmd[update:1000] echo "$(date +"%-I:%M")"
+ color = $white
+ font_size = 95
+ font_family = JetBrains Mono Extrabold
+ position = 0, 200
+ halign = center
+ valign = center
+}
+
+# PASSWORD
input-field {
monitor =
size = 250, 60
@@ -23,27 +44,15 @@ input-field {
dots_size = 0.2
dots_spacing = 0.35
dots_center = true
- outer_color = rgba(0, 0, 0, 0)
- inner_color = rgba(0, 0, 0, 0.2)
- font_color = "#FFFFFF"
+ outer_color = $transparent
+ inner_color = $transparent
+ font_color = $white
fade_on_empty = false
rounding = -1
- check_color = rgb(204, 136, 34)
- placeholder_text = Input Password...
+ placeholder_text = Password for $USER:
hide_input = false
position = 0, -200
halign = center
valign = center
}
-# TIME
-label {
- monitor =
- text = cmd[update:1000] echo "$(date +"%-I:%M")"
- color = rgba(242, 243, 244, 0.75)
- font_size = 95
- font_family = JetBrains Mono Extrabold
- position = 0, 200
- halign = center
- valign = center
-}