mirror of
https://github.com/FliegendeWurst/tmux-thumbs.git
synced 2024-11-09 16:00:35 +00:00
a32499fadf
Many people are struggling with the installation process because is not giving enough feedback. This commit improves this.
12 lines
342 B
Bash
Executable File
12 lines
342 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
DEFAULT_THUMBS_KEY=space
|
|
|
|
THUMBS_KEY="$(tmux show-option -gqv @thumbs-key)"
|
|
THUMBS_KEY=${THUMBS_KEY:-$DEFAULT_THUMBS_KEY}
|
|
|
|
tmux set-option -ag command-alias "thumbs-pick=run-shell -b ${CURRENT_DIR}/tmux-thumbs.sh"
|
|
tmux bind-key "${THUMBS_KEY}" thumbs-pick
|