#!/bin/bash echo "Uninstalling..." daemon_plist_path="$HOME/Library/LaunchAgents/com.figma.daemon.plist" if [ -e "$daemon_plist_path" ]; then launchctl unload "$daemon_plist_path" rm "$daemon_plist_path" fi rm -rf "$HOME/Library/Application Support/Figma/FigmaDaemon.app" rm -rf "$HOME/Library/Application Support/Figma/FigmaAgent.app" osascript -e 'tell application "System Events" to delete login item "FigmaAgent"' >/dev/null 2>&1 killall figma_agent figma-node FigmaDaemon >/dev/null 2>&1 echo "Uninstall done!"