dotfiles

Configs for programs I use!
git clone git://shipwreckt.co.uk/dotfiles.git
Log | Files | Refs | README | LICENSE

synth-shell-prompt.config.default (2860B)


      1 format="USER HOST PWD GIT PYENV TF KUBE"
      2 
      3 separator_char='\uE0B0'           # Separation character, '\uE0B0'=triangle
      4 separator_padding_left=''         # Add char or string to the left of the separator
      5 separator_padding_right=''        # Add char or string to the right of the separator
      6 segment_padding=' '               # Add char or string around segment text
      7 enable_vertical_padding=true      # Add extra new line over prompt
      8 enable_command_on_new_line=false  # Add new line between prompt and command
      9 
     10 
     11 #Host
     12 font_color_host="white"
     13 background_host="light-blue"
     14 texteffect_host="bold"
     15 
     16 #User
     17 font_color_user="white"
     18 background_user="blue"
     19 texteffect_user="bold"
     20 
     21 
     22 
     23 
     24 ##==============================================================================
     25 ## PWD (working dir)
     26 ##==============================================================================
     27 font_color_pwd="dark-gray"
     28 background_pwd="white"
     29 texteffect_pwd="bold"
     30 
     31 max_pwd_char="25"
     32 pwd_trunc_symbol="…"
     33 
     34 
     35 
     36 ##==============================================================================
     37 ## GIT
     38 ##==============================================================================
     39 font_color_git="light-gray"
     40 background_git="dark-gray"
     41 texteffect_git="bold"
     42 
     43 git_symbol_synced=''
     44 git_symbol_unpushed=' ▲'
     45 git_symbol_unpulled=' ▼'
     46 git_symbol_unpushedunpulled=' ◆'
     47 git_symbol_dirty=' ◔'
     48 git_symbol_dirty_unpushed=' ◔ △'
     49 git_symbol_dirty_unpulled=' ◔ ▽'
     50 git_symbol_dirty_unpushedunpulled=' ◔ ◇'
     51 git_symbol_stash='🗎'
     52 git_update_period_minutes=15	# Use -1 to disable automatic updates
     53 
     54 
     55 
     56 ##==============================================================================
     57 ## PYENV
     58 ##==============================================================================
     59 font_color_pyenv="white"
     60 background_pyenv="blue"
     61 texteffect_pyenv="bold"
     62 
     63 
     64 
     65 ##==============================================================================
     66 ## KUBERNETES
     67 ##==============================================================================
     68 font_color_kube="white"
     69 background_kube="purple"
     70 texteffect_kube="bold"
     71 
     72 
     73 
     74 ##==============================================================================
     75 ## TERRAFORM WORKSPACE
     76 ##==============================================================================
     77 font_color_tf="purple"
     78 background_tf="light-purple"
     79 texteffect_tf="bold"
     80 
     81 
     82 
     83 ##==============================================================================
     84 ## CLOCK
     85 ##==============================================================================
     86 font_color_clock="white"
     87 background_clock="light-blue"
     88 texteffect_clock="bold"
     89 
     90 clock_format="%H:%M"
     91 
     92 
     93 
     94 ##==============================================================================
     95 ## INPUT (user typed command)
     96 ##==============================================================================
     97 font_color_input="45"
     98 background_input="none"
     99 texteffect_input="bold"