10 lines
144 B
Bash
Executable File
10 lines
144 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ -x ".ready-tmux" ]]; then
|
|
./ready-tmux
|
|
elif [[ -x "$HOME/.ready-tmux" ]]; then
|
|
"$HOME/.ready-tmux"
|
|
fi
|
|
|
|
clear
|