aboutsummaryrefslogtreecommitdiff
path: root/wtmux
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-08-02 15:57:37 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-08-02 15:57:37 -0300
commit9039fd411934413a750ff77eab4d8c632b3e5741 (patch)
tree8cf0a20f19050d4d47c4cb0b0ced920f85ccca69 /wtmux
parent5585ddfc0b7098900a916cf581736f3601d4c7db (diff)
downloadtermplex-9039fd411934413a750ff77eab4d8c632b3e5741.tar.gz
termplex-9039fd411934413a750ff77eab4d8c632b3e5741.tar.bz2
Fix: positional argument handling
Diffstat (limited to 'wtmux')
-rwxr-xr-xwtmux2
1 files changed, 1 insertions, 1 deletions
diff --git a/wtmux b/wtmux
index aa48386..b577fd8 100755
--- a/wtmux
+++ b/wtmux
@@ -43,7 +43,7 @@ if [ ! -z "${name}" ]; then
fi
fi
- if [ -z "$state" ] || [ "$state" == "attached" ]; then
+ if [ "$state" != "detached" ]; then
tmux attach -t ${name}
fi
else