Work on greeting
This commit is contained in:
parent
b4259aa2a2
commit
03e94092f8
1 changed files with 3 additions and 0 deletions
|
@ -31,6 +31,9 @@ test -f ~/.fzf/shell/key-bindings.fish && source ~/.fzf/shell/key-bindings.fish
|
||||||
function fish_greeting;
|
function fish_greeting;
|
||||||
set_color -b black brblack
|
set_color -b black brblack
|
||||||
printf "%s@%s %s\n" $USER (hostname) (date)
|
printf "%s@%s %s\n" $USER (hostname) (date)
|
||||||
|
printf "%6d processes running\n" (ps -aux | wc -l)
|
||||||
|
printf "%6sGB memory available\n" (free -g | grep '^Mem:' | tr -s ' ' | cut -d ' ' -f7)
|
||||||
|
printf "%6d PTYs open\n" (cat /proc/sys/kernel/pty/nr)
|
||||||
end
|
end
|
||||||
|
|
||||||
# we assume the user uses "$HOME" to just store their mess of dotfiles and other
|
# we assume the user uses "$HOME" to just store their mess of dotfiles and other
|
||||||
|
|
Reference in a new issue