From d7e06263b2f6818ca67d17e1baec0aa1c474b04a Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Thu, 3 Apr 2025 22:47:47 -0400 Subject: [PATCH] ssh, ls, and fastfetch uses lolcat --- src/config.fish | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/config.fish b/src/config.fish index dedb7d7..ab02ed0 100644 --- a/src/config.fish +++ b/src/config.fish @@ -2,9 +2,11 @@ function __base-aliases set -l _weather_service wttr.in alias pacman-mirrors="sudo reflector --protocol https --country US --age 24 --verbose --sort rate -l 100 --save /etc/pacman.d/mirrorlist" + alias fastfetch="fastfetch | lolcat" alias weather="curl $_weather_service" alias grep="grep --color=auto" alias ccd="cd && c" + alias ls="ls -l --color" alias la="ls -a" alias c="clear" end @@ -32,9 +34,15 @@ function __sd end end +function __ssh + alias ssh-pubkey="cat ~/.ssh/id_ed25519.pub" + alias ssh-proxmox="ssh root@192.168.1.221" +end + if status is-interactive __base-aliases __configs __media __sd + __ssh end