9 lines
141 B
Bash
Executable File
9 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check if Zsh is available
|
|
if command -v zsh >/dev/null 2>&1; then
|
|
zsh scripts/tmux-td-zsh
|
|
else
|
|
bash scripts/tmux-td-bash
|
|
fi
|