.liquidpromptrc 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. ####################################
  2. # LIQUID PROMPT CONFIGURATION FILE #
  3. ####################################
  4. # If you want to use different themes and features,
  5. # you can load the corresponding files here:
  6. #source ~/.config/liquidprompt/nojhan.theme
  7. #LP_PS1_FILE=~/.config/liquidprompt/nojhan.ps1
  8. #############
  9. # BEHAVIOUR #
  10. #############
  11. # Display the battery level when the level is below this threshold.
  12. # Recommended value is 75
  13. LP_BATTERY_THRESHOLD=75
  14. # Display the load average when the load is above this threshold.
  15. # Recommended value is 60
  16. LP_LOAD_THRESHOLD=60
  17. # Display the temperature when the temperate is above this threshold (in
  18. # degrees Celsius).
  19. # Recommended value is 60
  20. LP_TEMP_THRESHOLD=60
  21. # Use the shorten path feature if the path is too long to fit in the prompt
  22. # line.
  23. # Recommended value is 1
  24. LP_ENABLE_SHORTEN_PATH=1
  25. # The maximum percentage of the screen width used to display the path before
  26. # removing the center portion of the path and replacing with '...'.
  27. # Recommended value is 35
  28. LP_PATH_LENGTH=35
  29. # The number of directories (including '/') to keep at the beginning of a
  30. # shortened path.
  31. # Recommended value is 2
  32. LP_PATH_KEEP=2
  33. # Determine if the hostname should always be displayed, even if not connecting
  34. # through network.
  35. # Defaults to 0 (do not display hostname when locally connected)
  36. # set to 1 if you want to always see the hostname
  37. # set to -1 if you want to never see the hostname
  38. LP_HOSTNAME_ALWAYS=0
  39. # Use the fully qualified domain name (FQDN) instead of the short hostname when
  40. # the hostname is displayed
  41. LP_ENABLE_FQDN=0
  42. # Always display the user name, even if the user is the same as the one logged
  43. # in.
  44. # Defaults to 1 (always display the user name)
  45. # set to 0 if you want to hide the logged user (it will always display different
  46. # users)
  47. LP_USER_ALWAYS=1
  48. # Display the percentages of load/batteries along with their
  49. # corresponding marks. Set to 0 to only print the colored marks.
  50. # Defaults to 1 (display percentages)
  51. LP_PERCENTS_ALWAYS=1
  52. # Use the permissions feature and display a red ':' before the prompt to show
  53. # when you don't have write permission to the current directory.
  54. # Recommended value is 1
  55. LP_ENABLE_PERM=1
  56. # Enable the proxy detection feature.
  57. # Recommended value is 1
  58. LP_ENABLE_PROXY=1
  59. # Enable the jobs feature.
  60. # Recommended value is 1
  61. LP_ENABLE_JOBS=1
  62. # Enable the load feature.
  63. # Recommended value is 1
  64. LP_ENABLE_LOAD=1
  65. # Enable the battery feature.
  66. # Recommended value is 1
  67. LP_ENABLE_BATT=2
  68. # Enable the 'sudo credentials' feature.
  69. # Be warned that this may pollute the syslog if you don't have sudo
  70. # credentials, and the sysadmin will hate you.
  71. LP_ENABLE_SUDO=0
  72. # Enable the VCS features with the root account.
  73. # Recommended value is 0
  74. LP_ENABLE_VCS_ROOT=0
  75. # Enable the Git special features.
  76. # Recommended value is 1
  77. LP_ENABLE_GIT=1
  78. # Enable the Subversion special features.
  79. # Recommended value is 1
  80. LP_ENABLE_SVN=0
  81. # Enable the Mercurial special features.
  82. # Recommended value is 1
  83. LP_ENABLE_HG=0
  84. # Enable the Fossil special features.
  85. # Recommended value is 1
  86. LP_ENABLE_FOSSIL=0
  87. # Enable the Bazaar special features.
  88. # Recommanded value is 1
  89. LP_ENABLE_BZR=0
  90. # Show time of when the current prompt was displayed. (Must be enabled and
  91. # disabled in the config file and not after liquidprompt has already been
  92. # sourced.)
  93. LP_ENABLE_TIME=0
  94. # Show runtime of the previous command if over LP_RUNTIME_THRESHOLD
  95. # Recommended value is 0
  96. LP_ENABLE_RUNTIME=0
  97. # Minimal runtime (in seconds) before the runtime will be displayed
  98. # Recommended value is 2
  99. LP_RUNTIME_THRESHOLD=2
  100. # Display the virtualenv that is currently activated, if any
  101. # Recommended value is 1
  102. LP_ENABLE_VIRTUALENV=1
  103. # Display the enabled software collections, if any
  104. # Recommended value is 1
  105. LP_ENABLE_SCLS=1
  106. # Show average system temperature
  107. LP_ENABLE_TEMP=1
  108. # When showing the time, use an analog clock instead of numeric values.
  109. # The analog clock is "accurate" to the nearest half hour.
  110. # You must have a unicode-capable terminal and a font with the "CLOCK"
  111. # characters.
  112. # Recommended value is 0
  113. LP_TIME_ANALOG=0
  114. # Use the prompt as the title of the terminal window
  115. # The content is not customizable, the implementation is very basic,
  116. # and this may not work properly on exotic terminals, thus the
  117. # recommended value is 0
  118. # See LP_TITLE_OPEN and LP_TITLE_CLOSE to change escape characters to adapt this
  119. # feature to your specific terminal.
  120. LP_ENABLE_TITLE=1
  121. # Enable Title for screen and byobu
  122. LP_ENABLE_SCREEN_TITLE=1
  123. # Use different colors for the different hosts you SSH to
  124. LP_ENABLE_SSH_COLORS=1
  125. # Specify a list of complete and colon (":") separated paths in which, all vcs
  126. # will be disabled
  127. LP_DISABLED_VCS_PATH=""
  128. # vim: set et sts=4 sw=4 tw=120 ft=sh: