diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-24 13:50:03 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-24 13:50:03 +0200 |
commit | 288d80e0780fbee64b3fea72e3a1529ed2e12f08 (patch) | |
tree | 2beb6eb7e89424e34068bc7ab19e4bcf824e0e75 /bashrc/bin | |
parent | 0cf33c49e3f3e08dc42626637512853052e4401b (diff) | |
download | dotfiles-288d80e0780fbee64b3fea72e3a1529ed2e12f08.tar.gz dotfiles-288d80e0780fbee64b3fea72e3a1529ed2e12f08.tar.xz dotfiles-288d80e0780fbee64b3fea72e3a1529ed2e12f08.zip |
bin/t: remove redirection from tmux ls command
tmux hags when redirecting output (bug in epoll on linux) so do not
redirect the output to be able to use the t binary again
Diffstat (limited to '')
-rwxr-xr-x | bashrc/bin/t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc/bin/t b/bashrc/bin/t index 39ba79c..019eda9 100755 --- a/bashrc/bin/t +++ b/bashrc/bin/t @@ -1,7 +1,7 @@ #!/usr/bin/env bash if [[ "x$1" == x ]] ; then - \tmux list-sessions &>/dev/null || + \tmux list-sessions || { \tmux new-session -d } |