Files
omarchy/migrations/1757879836.sh
David Heinemeier Hansson 5f56f4ccc7 Expose Hyprland styling directly
Closes #660
Co-authored-by: @med502
2025-09-14 22:14:29 +02:00

11 lines
457 B
Bash

echo "Ensure .config/hypr/looknfeel.conf is available and included"
if [[ ! -f ~/.config/hypr/looknfeel.conf ]]; then
cp $OMARCHY_PATH/config/hypr/looknfeel.conf ~/.config/hypr/looknfeel.conf
fi
if [[ -f ~/.config/hypr/hyprland.conf ]]; then
grep -qx 'source = ~/.config/hypr/looknfeel.conf' ~/.config/hypr/hyprland.conf ||
sed -i '/^source = ~\/.config\/hypr\/envs\.conf$/a source = ~/.config/hypr/looknfeel.conf' ~/.config/hypr/hyprland.conf
fi