diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-06-17 22:42:10 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-06-17 22:42:10 +0200 |
| commit | 2202078d321f4c80d7ef5e5c12692674e299ed38 (patch) | |
| tree | d6ccc55524880a6e9f8125a17f4f86c058cc21d0 /functions | |
| parent | d84113b411575d24c4a1c9da0485eaeb63f25725 (diff) | |
| download | c-star-2202078d321f4c80d7ef5e5c12692674e299ed38.tar.gz | |
Initial minimalistic version
Diffstat (limited to 'functions')
| -rw-r--r-- | functions/fish_prompt.fish | 3 | ||||
| -rw-r--r-- | functions/fish_right_prompt.fish | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/functions/fish_prompt.fish b/functions/fish_prompt.fish new file mode 100644 index 0000000..4d29852 --- /dev/null +++ b/functions/fish_prompt.fish @@ -0,0 +1,3 @@ +function fish_prompt --description "The left side of the C-Star prompt" + echo -e "$c_star_user$c_star_host $c_star_pwd $c_star_git\n$c_star_user_marker$c_star_prompt_symbol " +end
\ No newline at end of file diff --git a/functions/fish_right_prompt.fish b/functions/fish_right_prompt.fish new file mode 100644 index 0000000..079a655 --- /dev/null +++ b/functions/fish_right_prompt.fish @@ -0,0 +1,3 @@ +function fish_right_prompt --description "The right side of the C-Star prompt" + echo -e "$c_star_datetime" +end
\ No newline at end of file |