diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-01-03 14:35:06 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-01-03 14:35:06 +0530 |
commit | e7b3bd7b5beaa32a9b5e0c28df6a7802c35fcec6 (patch) | |
tree | 3d33b14c4b4d1cf70e003d6a92bf5b9b8d44122e /archive/fish/functions/fish_prompt.fish | |
parent | 586545b829523d085d1a24832b2acc3a8c02fe00 (diff) |
Making XMonad better again
Diffstat (limited to 'archive/fish/functions/fish_prompt.fish')
-rw-r--r-- | archive/fish/functions/fish_prompt.fish | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/archive/fish/functions/fish_prompt.fish b/archive/fish/functions/fish_prompt.fish deleted file mode 100644 index b8371e5c..00000000 --- a/archive/fish/functions/fish_prompt.fish +++ /dev/null @@ -1,23 +0,0 @@ -set __fish_git_prompt_showcolorhints - -set __fish_git_prompt_color_branch 0a4efc --bold -set __fish_git_prompt_color_dirtystate white -set __fish_git_prompt_color_invalidstate red -set __fish_git_prompt_color_merging yellow -set __fish_git_prompt_color_stagedstate yellow -set __fish_git_prompt_color_upstream_ahead green -set __fish_git_prompt_color_upstream_behind red - -function fish_prompt - set last_status $status - - set_color fc0a4a --bold - printf '%s' (prompt_pwd) - - set_color normal - printf '%s ' (__fish_git_prompt) - set_color 5c64db - - echo -n " " - set_color normal -end |