feat(hyprlock): rice it slightly

This commit is contained in:
Mohammad Rafiq 2025-03-24 03:56:51 +08:00
parent f1786a1236
commit 4f6fb110d6
No known key found for this signature in database

View file

@ -3,7 +3,7 @@ let
cfg = cfg =
if osConfig.networking.hostName == "nemesis" then if osConfig.networking.hostName == "nemesis" then
{ {
mainMonitor = "desc:OOO AN-270W04K"; mainMonitor = "HDMI-A-1";
} }
else else
{ {
@ -16,7 +16,15 @@ in
package = null; package = null;
settings = { settings = {
general.hide_cursor = true; general = {
hide_cursor = true;
ignore_empty_input = true;
};
background = {
blur_passes = 5;
blur_size = 5;
};
label = { label = {
monitor = cfg.mainMonitor; monitor = cfg.mainMonitor;
@ -26,7 +34,10 @@ in
valign = "center"; valign = "center";
position = "0, 0"; position = "0, 0";
zindex = 1; zindex = 1;
shadow_passes = 5;
shadow_size = 5;
}; };
input-field = { input-field = {
fade_on_empty = true; fade_on_empty = true;
size = "200, 45"; size = "200, 45";
@ -35,6 +46,8 @@ in
position = "0, -5%"; position = "0, -5%";
placeholder_text = ""; placeholder_text = "";
zindex = 1; zindex = 1;
shadow_passes = 5;
shadow_size = 5;
}; };
}; };
}; };