Parcourir la source

tmux concept changed

84582af
Dirk Alders il y a 2 ans
Parent
révision
571bbdfcbe
2 fichiers modifiés avec 7 ajouts et 4 suppressions
  1. 0
    3
      tmux_local
  2. 7
    1
      tmux_ssh

+ 0
- 3
tmux_local Voir le fichier

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

+ 7
- 1
tmux_ssh Voir le fichier

@@ -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
+

Chargement…
Annuler
Enregistrer