Files
keyboard/mac-agent/uninstall.sh

11 lines
197 B
Bash
Executable File

#!/bin/bash
set -e
LABEL="com.user.kb-focus"
PLIST="$HOME/Library/LaunchAgents/$LABEL.plist"
launchctl bootout "gui/$(id -u)/$LABEL" 2>/dev/null || true
rm -f "$PLIST"
echo "Uninstalled $LABEL"