feat: hyprlock theming

This commit is contained in:
2026-06-18 19:54:54 +02:00
parent 3247c768ba
commit 0218fde26e
3 changed files with 16 additions and 7 deletions
+7 -6
View File
@@ -12,9 +12,10 @@
# ┌ ┐ # ┌ ┐
# │ BACKGROUND │ # │ BACKGROUND │
# └ ┘ # └ ┘
source = ./hyprlock-colors.conf
background { background {
monitor = monitor =
path = /home/janis/NextCloud/Wallpapers/nvim/nvim-simple.png # Or screenshot path = $background_image # Or screenshot
blur_passes = 1 blur_passes = 1
} }
@@ -29,9 +30,9 @@ input-field {
dots_size = 0.33 # Scale of input-field height, 0.2 - 0.8 dots_size = 0.33 # Scale of input-field height, 0.2 - 0.8
dots_spacing = 0.15 # Scale of dots' absolute size, 0.0 - 1.0 dots_spacing = 0.15 # Scale of dots' absolute size, 0.0 - 1.0
dots_center = false dots_center = false
outer_color = rgb(92, 155, 63) outer_color = $entry_border_color
inner_color = rgb(200, 200, 200) inner_color = $entry_background_color
font_color = rgb(10, 10, 10) font_color = $entry_color
fade_on_empty = true fade_on_empty = true
placeholder_text = <i>Input Password...</i> # Text rendered in the input box when it's empty. placeholder_text = <i>Input Password...</i> # Text rendered in the input box when it's empty.
hide_input = false hide_input = false
@@ -56,7 +57,7 @@ label {
label { label {
monitor = monitor =
text = $LAYOUT text = $LAYOUT
color = rgba(200, 200, 200, 1.0) color = $text_color
font_size = 12 font_size = 12
font_family = Comfortaa font_family = Comfortaa
@@ -68,7 +69,7 @@ label {
label { label {
monitor = monitor =
text = $USER text = $USER
color = rgba(200, 200, 200, 1.0) color = $text_color
font_size = 12 font_size = 12
font_family = Comfortaa font_family = Comfortaa
+4
View File
@@ -5,6 +5,10 @@ version_check = false
input_path = '~/.config/matugen/templates/hyprland/colors.lua' input_path = '~/.config/matugen/templates/hyprland/colors.lua'
output_path = '~/.config/hypr/hyprland/colors.lua' output_path = '~/.config/hypr/hyprland/colors.lua'
[templates.hyprlock]
input_path = '~/.config/matugen/templates/hyprland/hyprlock-colors.conf'
output_path = '~/.config/hypr/hyprlock-colors.conf'
[templates.wlogout] [templates.wlogout]
input_path = '~/.config/matugen/templates/wlogout/style.css' input_path = '~/.config/matugen/templates/wlogout/style.css'
output_path = '~/.config/wlogout/style.css' output_path = '~/.config/wlogout/style.css'
+5 -1
View File
@@ -439,7 +439,10 @@
} }
], ],
"rightWidgets": [ "rightWidgets": [
"systemTray", {
"id": "systemTray",
"enabled": true
},
{ {
"id": "cpuUsage", "id": "cpuUsage",
"enabled": true, "enabled": true,
@@ -459,6 +462,7 @@
"showVpnIcon": false, "showVpnIcon": false,
"showMicIcon": true, "showMicIcon": true,
"showBatteryIcon": true, "showBatteryIcon": true,
"showPrinterIcon": false,
"showScreenSharingIcon": false "showScreenSharingIcon": false
} }
], ],