fish-config/config.fish
wn 9b7b27c72d
First commit
First commit after delete an `abbr` related to restic.
And add 2 envs related to restic.
2024-01-08 19:34:25 +08:00

25 lines
525 B
Fish

if status is-interactive
# Commands to run in interactive sessions can go here
set -g LIBVIRT_DEFAULT_URI "qemu:///system"
# abbr -a rcd --set-cursor=% "rclone sync onedrive:%"
# abbr -a rcu --set-cursor=% "rclone sync % onedrive:"
end
function fish_greeting
set_color normal
echo -n "Hello! "
set_color normal
echo -n "Now is "
set_color -o red
date +"%T %d/%m/%Y"
set_color normal
fortune -s | cowsay | lolcat -F 0.3
set_color normal
echo "Have a good time!"
end