1
1
Fork 0

Include user in prompt if not the normal user

This commit is contained in:
Jonathan Schleifer 2020-08-23 12:07:26 +00:00
parent bdfce892e4
commit cb958c0da3
4 changed files with 17 additions and 4 deletions

View file

@ -0,0 +1,5 @@
function prompt_user
if test (whoami) != "$fish_normal_user"
echo (whoami)"@"
end
end