diff --git a/config/hypr/hyprlock.conf b/config/hypr/hyprlock.conf index f3e81598f7..bda6948aab 100644 --- a/config/hypr/hyprlock.conf +++ b/config/hypr/hyprlock.conf @@ -3,6 +3,7 @@ source = ~/.config/omarchy/current/theme/hyprlock.conf background { monitor = color = $color + path = $background } animations { diff --git a/migrations/1757277657.sh b/migrations/1757277657.sh new file mode 100644 index 0000000000..72ac8b5cc8 --- /dev/null +++ b/migrations/1757277657.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +conf="$HOME/.config/hypr/hyprlock.conf" + +if ! grep -q "path = \$background" "$conf"; then + sed -i '/color = \$color/a \ path = \$background' "$conf" +fi