From dfc6eab8db8ae684e880c6540eea3ef54d6d777b Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 3 May 2026 21:01:27 +0200 Subject: [PATCH] Ensure the elephant menus are always linked on a refresh Closes #4717 --- bin/omarchy-refresh-walker | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bin/omarchy-refresh-walker b/bin/omarchy-refresh-walker index 4e834b7f..2354144f 100755 --- a/bin/omarchy-refresh-walker +++ b/bin/omarchy-refresh-walker @@ -16,5 +16,11 @@ omarchy-refresh-config walker/config.toml omarchy-refresh-config elephant/calc.toml omarchy-refresh-config elephant/desktopapplications.toml +# Link all elephant menus +mkdir -p ~/.config/elephant/menus +for menu in $OMARCHY_PATH/default/elephant/*.lua; do + ln -snf "$menu" ~/.config/elephant/menus/"$(basename "$menu")" +done + # Restart service omarchy-restart-walker