diff options
| author | jstmax! <87650746+jstmaxlol@users.noreply.github.com> | 2024-12-11 21:17:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-11 21:17:10 +0100 |
| commit | aa05c8930d7918ba42e14b49ec2a2b74de27f232 (patch) | |
| tree | ff0b883f98e46d9633f8403c4961f6a1a7e17ab3 | |
| parent | 80def07cbe990a31b318b8b63fb920be5aca4992 (diff) | |
Create fish_prompt.fish
| -rw-r--r-- | towget/fish_prompt.fish | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/towget/fish_prompt.fish b/towget/fish_prompt.fish new file mode 100644 index 0000000..122616b --- /dev/null +++ b/towget/fish_prompt.fish @@ -0,0 +1,7 @@ +function fish_prompt + if test "$PWD" = "/home/maxlol" + echo -e (set_color green)$USER(set_color white)"@"(set_color green)"~"\n(set_color white)":: " + else + echo -e (set_color green)$USER(set_color white)"@"(set_color green)$PWD\n(set_color white)":: " + end +end |