From 6d873f39af950d5111781d4b86f47590be465e02 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 6 Jan 2026 22:26:18 +0000 Subject: [PATCH] [macos] Remove moved functions --- macos/.config/shell-common/macos.sh | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/macos/.config/shell-common/macos.sh b/macos/.config/shell-common/macos.sh index 8355b0a..2659f1d 100644 --- a/macos/.config/shell-common/macos.sh +++ b/macos/.config/shell-common/macos.sh @@ -54,21 +54,6 @@ function update-dock() { killall Dock } -# Fuzzy find and focus a window using aerospace and fzf -if [ -x "$(command -v aerospace)" ] && [ -x "$(command -v fzf)" ]; then - function ff() { - aerospace list-windows --all | fzf --height 40% --layout=reverse --border --ansi | awk '{print $1}' | xargs -I {} aerospace focus --window-id {} - } -fi - -# Detect Zed installation in common locations -for zed_path in "$HOME/Applications/Zed.app" "/Applications/Zed.app"; do - if [ -d "$zed_path" ]; then - alias zed="$zed_path/Contents/MacOS/cli" - break - fi -done - # Use Tailscale binary if installed via app if [ -d "/Applications/Tailscale.app" ]; then alias tailscale="/Applications/Tailscale.app/Contents/MacOS/Tailscale"