hh resume booster: free auto-bump for hh.ru (Playwright, Linux/Win/Mac)

This commit is contained in:
stackops
2026-08-24 20:34:25 +03:00
commit 5e2a1514c5
15 changed files with 468 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
# macOS: ставит launchd-агент (каждые 2ч) с автоподстановкой путей.
set -e
DIR="$(cd "$(dirname "$0")/.." && pwd)"
PLIST="$HOME/Library/LaunchAgents/com.stackops.hhbump.plist"
mkdir -p "$HOME/Library/LaunchAgents"
sed "s#__DIR__#$DIR#g" "$DIR/scheduler/com.stackops.hhbump.plist" > "$PLIST"
launchctl bootout "gui/$(id -u)/com.stackops.hhbump" 2>/dev/null || true
launchctl bootstrap "gui/$(id -u)" "$PLIST"
echo "✅ Установлено. Проверка: launchctl list | grep hhbump"
echo " Остановить: launchctl bootout gui/\$(id -u)/com.stackops.hhbump"
echo " Логи: $DIR/bump.log"