mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
e2f03fa8a7
Add a helper function to check if the user is root. This function can be useful for the prompts for example. Modify the prompts made root checked to use the function instead. Add also the support of Administrator like a root user. Fixes: #7031
10 lines
266 B
Fish
10 lines
266 B
Fish
# To know if the user is root. Used by several prompts to display something
|
|
# else if the user is root.
|
|
|
|
function fish_is_root_user --description "Check if the user is root"
|
|
if contains -- $USER root toor Administrator
|
|
return 0
|
|
end
|
|
|
|
return 1
|
|
end
|