mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 13:03:13 +02:00
- Move all linux_configuration scripts into two semantic categories: - single_use/: scripts run once manually (fresh install, fixes, setup) - periodic_background/: scripts run by systemd timers or daemons - Preserve existing subdirectory structure within each category - Fix lib/common.sh source paths for new directory depths - Fix CONFIG_DIR depth in setup_periodic_system.sh and check_and_enable_services.sh - Update all references in tests, fresh-install/main.sh, nix modules, and docs - Fix check_polling_antipatterns.sh false positives (||, regex |, case patterns, jq strings) - Fix pre-existing mypy exclusion path and type annotations for moved tools/ directory - Rewrite check_polling_antipatterns.sh using awk (no bash regex loops); add require_serial: true
23 lines
723 B
Bash
Executable File
23 lines
723 B
Bash
Executable File
#!/bin/bash
|
|
# YouTube Music Wrapper - Blocks launch when focus apps are running
|
|
# This replaces the actual youtube-music binary
|
|
|
|
set -euo pipefail
|
|
|
|
# Source common library for shared functions
|
|
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
|
source "$SCRIPT_DIR/../../lib/common.sh"
|
|
|
|
REAL_BINARY="/opt/YouTube Music/youtube-music.real"
|
|
LOG_FILE="${XDG_STATE_HOME:-$HOME/.local/state}/music-parallelism/music-parallelism.log"
|
|
|
|
# Main
|
|
if focus_app=$(is_focus_app_running); then
|
|
log_message "BLOCKED: YouTube Music launch prevented (focus app: $focus_app)" "$LOG_FILE"
|
|
notify "🚫 YouTube Music Blocked" "Focus mode active ($focus_app)" normal 3000
|
|
exit 1
|
|
fi
|
|
|
|
# No focus app running, launch normally
|
|
exec "$REAL_BINARY" "$@"
|