tmux-spotify-player/spotify.tmux

9 lines
398 B
Plaintext
Raw Permalink Normal View History

2024-05-27 10:02:41 +02:00
#!/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"
2024-05-27 10:11:13 +02:00
tmux bind-key + run-shell "$CURRENT_DIR/scripts/increase.sh"
tmux bind-key - run-shell "$CURRENT_DIR/scripts/decrease.sh"