tmux-spotify-player/spotify.tmux
2024-05-27 10:02:41 +02:00

7 lines
276 B
Bash
Executable file

#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
tmux bind-key Space run-shell "$CURRENT_DIR/scripts/play-pause.sh"
tmux bind-key N run-shell "$CURRENT_DIR/scripts/next_song.sh"
tmux bind-key P run-shell "$CURRENT_DIR/scripts/prev_song.sh"