tmux-kanagawa/scripts/cwd.sh
2023-05-12 13:35:49 -04:00

25 lines
484 B
Bash
Executable file

#!/usr/bin/env bash
# return current working directory of tmux pane
getPaneDir() {
nextone="false"
ret=""
for i in $(tmux list-panes -F "#{pane_active} #{pane_current_path}"); do
[ "$i" == "1" ] && nextone="true" && continue
[ "$i" == "0" ] && nextone="false"
[ "$nextone" == "true" ] && ret+="$i "
done
echo "${ret%?}"
}
main() {
path=$(getPaneDir)
# change '/home/user' to '~'
cwd="${path/"$HOME"/'~'}"
echo "$cwd"
}
#run main driver program
main