Skip to content

Instantly share code, notes, and snippets.

@tacahiroy
Created January 12, 2014 14:37
Show Gist options
  • Select an option

  • Save tacahiroy/8385336 to your computer and use it in GitHub Desktop.

Select an option

Save tacahiroy/8385336 to your computer and use it in GitHub Desktop.
init function for WeeChat on tmux
function weechat {
if [ -x `which weechat-curses` ]; then
if ! (ps aux | grep '[w]eechat-curses' 2>&1 > /dev/null); then
tmux new-window -t ${WEECHAT_TMUX_WINNUM:-98} weechat-curses
fi
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment