mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
6 lines
217 B
Bash
6 lines
217 B
Bash
echo "Ignore empty passwords on lock screen"
|
|
|
|
if ! grep -q "ignore_empty_input" ~/.config/hypr/hyprlock.conf; then
|
|
sed -i "/source =/a\ \ngeneral {\n ignore_empty_input = true\n}" ~/.config/hypr/hyprlock.conf
|
|
fi
|