tmux-thumbs/tmux-thumbs.sh

27 lines
615 B
Bash
Raw Normal View History

2019-02-04 21:40:45 +00:00
#!/usr/bin/env bash
2019-12-11 10:10:52 +00:00
[ -f ~/.bash_profile ] && source ~/.bash_profile
2019-03-06 17:04:05 +00:00
PARAMS=()
function add-option-param {
2019-03-28 13:02:15 +00:00
VALUE=$(tmux show -vg @thumbs-$1 2> /dev/null)
2019-03-20 23:31:28 +00:00
if [[ ${VALUE} ]]; then
PARAMS+=("--$1=${VALUE}")
2019-03-20 23:31:28 +00:00
fi
}
2020-01-08 22:11:44 +00:00
add-option-param "command"
add-option-param "upcase-command"
# 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
2019-03-09 22:39:16 +00:00
2019-03-10 09:45:22 +00:00
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2019-03-05 08:10:41 +00:00
2020-01-08 22:11:44 +00:00
${CURRENT_DIR}/target/release/tmux-thumbs --dir "${CURRENT_DIR}" "${PARAMS[@]}"