mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
19 lines
396 B
Bash
19 lines
396 B
Bash
# TODO: move elsewhere
|
|
IRC=($commands[weechat-curses] $commands[irssi])
|
|
|
|
if (( $+commands[tmux] )); then
|
|
[[ -z $TMUX ]] && exec tmux
|
|
|
|
if [[ -n $IRC ]]; then
|
|
irc() {
|
|
if tmux has -t irc >/dev/null; then
|
|
tmux switch -t irc
|
|
else
|
|
TMUX="" tmux new -ds irc $IRC[1]
|
|
tmux switch -t irc
|
|
fi
|
|
}
|
|
fi
|
|
else
|
|
omz_log_mgs "notfound: plugin requires tmux"
|
|
fi
|