7 lines
235 B
Bash
Executable File
7 lines
235 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
tmux bind-key -T prefix r run-shell "$CURRENT_DIR/scripts/main.sh reminders"
|
|
tmux bind-key -T prefix c run-shell "$CURRENT_DIR/scripts/main.sh calendar"
|