mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-03-12 10:48:11 +01:00
6 lines
138 B
Bash
Executable file
6 lines
138 B
Bash
Executable file
#!/bin/bash
|
|
|
|
EXISTS=false
|
|
tmux ls | cut -d: -f1 | grep -q "^${1:?}$" && EXISTS=true
|
|
$EXISTS && tmux a -t "$1"
|
|
$EXISTS || tmux new -s "$1"
|