mirror of
https://github.com/FliegendeWurst/tmux-thumbs.git
synced 2024-11-08 15:30:37 +00:00
16 lines
494 B
Bash
Executable File
16 lines
494 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 bind-key $THUMBS_KEY run-shell -b "${CURRENT_DIR}/tmux-thumbs.sh"
|
|
|
|
BINARY="${CURRENT_DIR}/target/release/thumbs"
|
|
|
|
if [ ! -f "$BINARY" ]; then
|
|
tmux split-window "cd ${CURRENT_DIR} && cargo build --release --target-dir=target && echo 'Press any key to continue...' && read -k1"
|
|
fi
|