diff options
Diffstat (limited to 'files/old-config/synth-shell/synth-shell-prompt.config.default')
-rw-r--r-- | files/old-config/synth-shell/synth-shell-prompt.config.default | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/files/old-config/synth-shell/synth-shell-prompt.config.default b/files/old-config/synth-shell/synth-shell-prompt.config.default new file mode 100644 index 0000000..12c6b5d --- /dev/null +++ b/files/old-config/synth-shell/synth-shell-prompt.config.default @@ -0,0 +1,99 @@ +format="USER HOST PWD GIT PYENV TF KUBE" + +separator_char='\uE0B0' # Separation character, '\uE0B0'=triangle +separator_padding_left='' # Add char or string to the left of the separator +separator_padding_right='' # Add char or string to the right of the separator +segment_padding=' ' # Add char or string around segment text +enable_vertical_padding=true # Add extra new line over prompt +enable_command_on_new_line=false # Add new line between prompt and command + + +#Host +font_color_host="white" +background_host="light-blue" +texteffect_host="bold" + +#User +font_color_user="white" +background_user="blue" +texteffect_user="bold" + + + + +##============================================================================== +## PWD (working dir) +##============================================================================== +font_color_pwd="dark-gray" +background_pwd="white" +texteffect_pwd="bold" + +max_pwd_char="25" +pwd_trunc_symbol="…" + + + +##============================================================================== +## GIT +##============================================================================== +font_color_git="light-gray" +background_git="dark-gray" +texteffect_git="bold" + +git_symbol_synced='' +git_symbol_unpushed=' ▲' +git_symbol_unpulled=' ▼' +git_symbol_unpushedunpulled=' ◆' +git_symbol_dirty=' ◔' +git_symbol_dirty_unpushed=' ◔ △' +git_symbol_dirty_unpulled=' ◔ ▽' +git_symbol_dirty_unpushedunpulled=' ◔ ◇' +git_symbol_stash='🗎' +git_update_period_minutes=15 # Use -1 to disable automatic updates + + + +##============================================================================== +## PYENV +##============================================================================== +font_color_pyenv="white" +background_pyenv="blue" +texteffect_pyenv="bold" + + + +##============================================================================== +## KUBERNETES +##============================================================================== +font_color_kube="white" +background_kube="purple" +texteffect_kube="bold" + + + +##============================================================================== +## TERRAFORM WORKSPACE +##============================================================================== +font_color_tf="purple" +background_tf="light-purple" +texteffect_tf="bold" + + + +##============================================================================== +## CLOCK +##============================================================================== +font_color_clock="white" +background_clock="light-blue" +texteffect_clock="bold" + +clock_format="%H:%M" + + + +##============================================================================== +## INPUT (user typed command) +##============================================================================== +font_color_input="45" +background_input="none" +texteffect_input="bold" |