From 06710e16f5bd654c8d32eb0694ec175e9dc3298b Mon Sep 17 00:00:00 2001 From: The_miro Date: Mon, 17 Feb 2025 15:51:01 +0100 Subject: [PATCH] fixed s shortcut to enable ssh into alacritty non blocking --- .zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index a22207c..3fcd4ca 100755 --- a/.zshrc +++ b/.zshrc @@ -130,7 +130,6 @@ export TERM=xterm-256color alias ls='ls --color=auto' alias grep='grep --color=auto' -PS1='[\u@\h \W]\$ ' alias ll="ls -la --time-style=long-iso" alias l="ll" @@ -167,7 +166,9 @@ alias icat="kitty +kitten icat" alias cls="clear" alias c="cls" -alias s="kitten ssh" +function s() { + alacritty -e sh -c "ssh $1" & +} alias serial="sudo tio -a latest"