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