소스 검색

tmux concept changed

84582af
Dirk Alders 2 년 전
부모
커밋
571bbdfcbe
2개의 변경된 파일7개의 추가작업 그리고 4개의 파일을 삭제
  1. 0
    3
      tmux_local
  2. 7
    1
      tmux_ssh

+ 0
- 3
tmux_local 파일 보기

@@ -1,3 +0,0 @@
1
-#!/bin/sh
2
-#
3
-tmux attach-session -t local || tmux new-session -s local

+ 7
- 1
tmux_ssh 파일 보기

@@ -1,3 +1,9 @@
1 1
 #!/bin/sh
2 2
 #
3
-tmux attach-session -t default_ssh || tmux new-session -s default_ssh
3
+SESSION=$(tmux display-message -p '#S' 2> /dev/null)
4
+
5
+if [ "$SESSION" = "" ]; then
6
+	tmux attach-session -t default_ssh || tmux new-session -s default_ssh
7
+fi
8
+
9
+

Loading…
취소
저장