From 72adf2a2ff9f1e55be3ba57a93d194135b765f1f Mon Sep 17 00:00:00 2001 From: thek4n Date: Sat, 23 May 2026 23:14:32 +0300 Subject: [PATCH] radio aliases --- home/user/.local/bin/player | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/user/.local/bin/player b/home/user/.local/bin/player index b8c8fa7..ea4d92b 100755 --- a/home/user/.local/bin/player +++ b/home/user/.local/bin/player @@ -14,7 +14,7 @@ usage() { Usage: ${PROG} [args] Commands: - radio Switch to a radio station + radio, r Switch to a radio station local, music [PATH] Switch to local music playlist (default: ~/Music) next, n Next track prev, p Previous track @@ -120,11 +120,11 @@ ACTION="${1:-}" shift 2>/dev/null || true case "${ACTION}" in - radio|tune) - tune_radio "$@" + radio|tune|r) + tune_radio "${@}" ;; local|music|m) - play_local_playlist "$@" + play_local_playlist "${@}" ;; next|n|prev|p|pause|stop|toggle|t|s) handle_control "${ACTION}"