Last active
August 8, 2022 19:34
-
-
Save gadelkareem/a24065b68f930696555f46bb6d508c0c to your computer and use it in GitHub Desktop.
fish prompt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fish_prompt --description 'Informative prompt' | |
#Save the return status of the previous command | |
set -l last_pipestatus $pipestatus | |
set -lx __fish_last_status $status # Export for __fish_print_pipestatus. | |
if functions -q fish_is_root_user; and fish_is_root_user | |
printf '%s@%s %s%s%s# ' $USER (prompt_hostname) (set -q fish_color_cwd_root | |
and set_color $fish_color_cwd_root | |
or set_color $fish_color_cwd) \ | |
(prompt_pwd) (set_color normal) | |
else | |
set -l status_color (set_color $fish_color_status) | |
set -l statusb_color (set_color --bold $fish_color_status) | |
set -l pipestatus_string (__fish_print_pipestatus "[" "]" "|" "$status_color" "$statusb_color" $last_pipestatus) | |
printf '[%s] %s%s@%s %s%s %s%s%s \n> ' (date "+%H:%M:%S") (set_color brblue) \ | |
$USER (prompt_hostname) (set_color $fish_color_cwd) $PWD $pipestatus_string \ | |
(set_color normal) | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fish_prompt --description 'Write out the prompt' | |
set -l last_status $status | |
if not set -q __fish_git_prompt_show_informative_status | |
set -g __fish_git_prompt_show_informative_status 1 | |
end | |
if not set -q __fish_git_prompt_hide_untrackedfiles | |
set -g __fish_git_prompt_hide_untrackedfiles 1 | |
end | |
if not set -q __fish_git_prompt_color_branch | |
set -g __fish_git_prompt_color_branch magenta --bold | |
end | |
if not set -q __fish_git_prompt_showupstream | |
set -g __fish_git_prompt_showupstream "informative" | |
end | |
if not set -q __fish_git_prompt_char_upstream_ahead | |
set -g __fish_git_prompt_char_upstream_ahead "↑" | |
end | |
if not set -q __fish_git_prompt_char_upstream_behind | |
set -g __fish_git_prompt_char_upstream_behind "↓" | |
end | |
if not set -q __fish_git_prompt_char_upstream_prefix | |
set -g __fish_git_prompt_char_upstream_prefix "" | |
end | |
if not set -q __fish_git_prompt_char_stagedstate | |
set -g __fish_git_prompt_char_stagedstate "●" | |
end | |
if not set -q __fish_git_prompt_char_dirtystate | |
set -g __fish_git_prompt_char_dirtystate "✚" | |
end | |
if not set -q __fish_git_prompt_char_untrackedfiles | |
set -g __fish_git_prompt_char_untrackedfiles "…" | |
end | |
if not set -q __fish_git_prompt_char_invalidstate | |
set -g __fish_git_prompt_char_invalidstate "✖" | |
end | |
if not set -q __fish_git_prompt_char_cleanstate | |
set -g __fish_git_prompt_char_cleanstate "✔" | |
end | |
if not set -q __fish_git_prompt_color_dirtystate | |
set -g __fish_git_prompt_color_dirtystate blue | |
end | |
if not set -q __fish_git_prompt_color_stagedstate | |
set -g __fish_git_prompt_color_stagedstate yellow | |
end | |
if not set -q __fish_git_prompt_color_invalidstate | |
set -g __fish_git_prompt_color_invalidstate red | |
end | |
if not set -q __fish_git_prompt_color_untrackedfiles | |
set -g __fish_git_prompt_color_untrackedfiles $fish_color_normal | |
end | |
if not set -q __fish_git_prompt_color_cleanstate | |
set -g __fish_git_prompt_color_cleanstate green --bold | |
end | |
if not set -q __fish_prompt_normal | |
set -g __fish_prompt_normal (set_color normal) | |
end | |
set -l color_cwd | |
set -l prefix | |
set -l suffix | |
switch "$USER" | |
case root toor | |
if set -q fish_color_cwd_root | |
set color_cwd $fish_color_cwd_root | |
else | |
set color_cwd $fish_color_cwd | |
end | |
set suffix '#' | |
case '*' | |
set color_cwd $fish_color_cwd | |
set suffix '$' | |
end | |
# PWD | |
set_color $color_cwd | |
echo -n (prompt_pwd) | |
set_color normal | |
printf '%s ' (__fish_vcs_prompt) | |
if not test $last_status -eq 0 | |
set_color $fish_color_error | |
echo -n "[$last_status] " | |
set_color normal | |
end | |
#fish-kube-prompt | |
echo -n (__kube_prompt) | |
echo -n "$suffix " | |
__terlar_git_prompt | |
__fish_hg_prompt | |
echo | |
if not test $last_status -eq 0 | |
set_color $fish_color_error | |
end | |
echo -n '➤ ' | |
set_color normal | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment