bundles/users: add option for custom tmux/bash/fish configs

This commit is contained in:
Franzi 2020-03-28 12:56:45 +01:00
parent 810c2cfcf8
commit eddb8ca70a
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 24 additions and 6 deletions

View file

@ -0,0 +1,23 @@
function fish_greeting
uptime
last | grep 'still logged in'
end
function fish_prompt
set -l last_status $status
echo -n "$USER@${node.name}:"
set_color $fish_color_cwd
echo -n (pwd)
set_color normal
if not test $last_status -eq 0
set_color $fish_color_error
echo -n " [$status]"
set_color normal
end
echo -n '➤ '
set_color normal
end