aboutsummaryrefslogtreecommitdiff
path: root/lib/tmux_adapter.sh
diff options
context:
space:
mode:
authorCody Hiar <chiar@hybridforge.com>2015-08-12 12:06:23 -0600
committerCody Hiar <chiar@hybridforge.com>2015-08-12 12:06:23 -0600
commit07fc2644a237187dd4c5680e88f4adadbf533603 (patch)
treebb6335e180df48c5a6f0b893312857d36ad470f7 /lib/tmux_adapter.sh
Initial commit of the working files
Diffstat (limited to 'lib/tmux_adapter.sh')
-rw-r--r--lib/tmux_adapter.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/tmux_adapter.sh b/lib/tmux_adapter.sh
new file mode 100644
index 0000000..17674e4
--- /dev/null
+++ b/lib/tmux_adapter.sh
@@ -0,0 +1,12 @@
+# Get the current path in the segment.
+get_tmux_cwd() {
+ local env_name=$(tmux display -p "TMUXPWD_#D" | tr -d %)
+ local env_val=$(tmux show-environment | grep --color=never "$env_name")
+ # The version below is still quite new for tmux. Uncomment this in the future :-)
+ #local env_val=$(tmux show-environment "$env_name" 2>&1)
+
+ if [[ ! $env_val =~ "unknown variable" ]]; then
+ local tmux_pwd=$(echo "$env_val" | sed 's/^.*=//')
+ echo "$tmux_pwd"
+ fi
+}