Initial commit: local_machine docs and scripts

This commit is contained in:
ahauimix
2026-03-14 20:03:57 +03:00
commit a39ef89125
85 changed files with 14500 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Снимает LaunchAgent: выгружает и удаляет plist из ~/Library/LaunchAgents/.
set -e
PLIST_NAME="com.hunab.telegram-socks.plist"
DST="$HOME/Library/LaunchAgents/$PLIST_NAME"
launchctl unload "$DST" 2>/dev/null || true
rm -f "$DST"
echo "Uninstalled: $DST"