summaryrefslogtreecommitdiff
path: root/.config/zsh
diff options
context:
space:
mode:
authorBrahmajit Das <listout@listout.xyz>2025-05-15 14:50:53 +0000
committerBrahmajit Das <listout@listout.xyz>2025-05-15 14:50:53 +0000
commitf4ce4b3cc2a161246584c88aeb590732951349b0 (patch)
treec1e09538e191e49b4096544d0ed7d5a69903d386 /.config/zsh
parent31eb1105441dc5eec8b6cfe57da9a697ca6cedd5 (diff)
downloaddots-f4ce4b3cc2a161246584c88aeb590732951349b0.tar.gz
zsh: aliases: adding irc alias for opeing TMUX with IRSSI
Signed-off-by: Brahmajit Das <listout@listout.xyz>
Diffstat (limited to '')
-rw-r--r--.config/zsh/aliases.zsh2
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/zsh/aliases.zsh b/.config/zsh/aliases.zsh
index 3ec175d..4257ce1 100644
--- a/.config/zsh/aliases.zsh
+++ b/.config/zsh/aliases.zsh
@@ -92,3 +92,5 @@ export VULNS_GIT="$HOME/vulns"
function fman() {
man -k . | fzf -q "$1" --prompt='man> ' --preview $'echo {} | tr -d \'()\' | awk \'{printf "%s ", $2} {print $1}\' | xargs -r man' | tr -d '()' | awk '{printf "%s ", $2} {print $1}' | xargs -r man
}
+
+alias irc="tmux new-session -s 'IRC' -n 'gentoo' 'irssi -c gentoo' \; new-window -n 'suse' 'irssi -c suse' \; new-window -n 'oftc' 'irssi -c oftc' \; attach"