mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
Agent-Logs-Url: https://github.com/basecamp/omarchy/sessions/36fb96d5-70fd-4365-9550-e7ff5f8735d1 Co-authored-by: dhh <2741+dhh@users.noreply.github.com>
10 lines
341 B
Bash
10 lines
341 B
Bash
echo "Add flags sourcing to hyprland.conf"
|
|
|
|
HYPR_CONF=~/.config/hypr/hyprland.conf
|
|
|
|
source "$OMARCHY_PATH/install/config/omarchy-toggles.sh"
|
|
|
|
if [[ -f $HYPR_CONF ]] && ! grep -q "toggles/hypr/\*\.conf" "$HYPR_CONF"; then
|
|
echo -e "\n# Toggle config flags dynamically\nsource = ~/.local/state/omarchy/toggles/hypr/*.conf" >> "$HYPR_CONF"
|
|
fi
|