fix: Fixes hyprlock to not be fixed to internal monitor, updates install-webapp script to use the SCRIPT env var.

This commit is contained in:
2025-09-29 12:27:03 -04:00
parent 07272176cd
commit a9f7317e30
2 changed files with 8 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ background {
}
input-field {
monitor = eDP-1
monitor =
size = 20%, 5%
outline_thickness = 3
inner_color = rgba(0, 0, 0, 0.0) # no fill

View File

@@ -73,6 +73,13 @@ declare -a mime_types # Optional mime types
declare -a help_flag
declare -a file_mode
declare INTERACTIVE_MODE=false
SCRIPTS="${SCRIPTS}"
if [[ -z "$SCRIPTS" ]]; then
echo "SCRIPTS not set"
echo "using ~/.local/scripts"
SCRIPTS=$HOME/.local/scripts
fi
zparseopts -D -F -K -- \
{n,-name}:=app_name \