tmux-thumbs/tmux-thumbs.sh
2020-08-04 18:58:50 +02:00

43 lines
881 B
Bash
Executable File

#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PARAMS=()
function get-option() {
tmux show -vg "@thumbs-${1}" 2> /dev/null
}
function add-boolean-param {
local opt
opt="${1}"
if [ "$(get-option "${opt}")" = 1 ]; then
PARAMS+=("--${opt}")
fi
}
function add-option-param {
local opt value
opt="${1}"
value="$(get-option "${opt}")"
if [ -n "${value}" ]; then
PARAMS+=("--${opt}=${value}")
fi
}
add-option-param command
add-option-param upcase-command
add-boolean-param osc52
# Remove empty arguments from PARAMS.
# Otherwise, they would choke up tmux-thumbs when passed to it.
for i in "${!PARAMS[@]}"; do
[ -n "${PARAMS[$i]}" ] || unset "PARAMS[$i]"
done
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
"${CURRENT_DIR}/target/release/tmux-thumbs" --dir "${CURRENT_DIR}" "${PARAMS[@]}"
true