Merge pull request #149 from dmitmel/master

[pull] master from dmitmel:master
This commit is contained in:
pull[bot] 2021-02-04 21:43:39 +00:00 committed by GitHub
commit 0ec9d1ded1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
scripts/tmux-attach-or-new.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
if tmux has-session; then
exec tmux attach
else
exec tmux new
fi