mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-03-12 18:58:10 +01:00
7 lines
138 B
Text
7 lines
138 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
EXISTS=false
|
||
|
tmux ls | cut -d: -f1 | grep -q "^${1:?}$" && EXISTS=true
|
||
|
$EXISTS && tmux a -t "$1"
|
||
|
$EXISTS || tmux new -s "$1"
|