tlwiki/Bashrc.wiki

27 lines
635 B
Plaintext

=Bashrc=
Current configuration can always be found at https://git.thurstylark.com/vcsh/bashrc.git
----
==Prompt==
----
==Profile==
----
==Weechat==
The alias portion of my [[Weechat]] configuration is set in the .bashrc like so:
{{{class="prettyprint"
# If you don't have weechat installed, connect to the existing tmux session through mosh
[[ ! -s /usr/bin/weechat ]] && alias weechat='mosh vps -- tmux attach -dt weechat'
# If you are thurstylark-vps, connect to the existing tmux session locally
[[ "$HOSTNAME" = "thurstylark-vps" ]] && alias weechat='tmux attach -dt weechat'
}}}
For more info, see the [[Weechat]] page.