Advertisement
Guest User

Untitled

a guest
May 27th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1.  
  2. ####################################
  3. # LIQUID PROMPT CONFIGURATION FILE #
  4. ####################################
  5.  
  6. # By Calinou
  7. # CC0 1.0 Universal
  8.  
  9. # If you want to use different themes and features,
  10. # you can load the corresponding files here:
  11. #source ~/code/liquidprompt/nojhan.theme
  12. #LP_PS1_FILE="~/code/liquidprompt/nojhan.ps1"
  13.  
  14. #############
  15. # BEHAVIOUR #
  16. #############
  17.  
  18. LP_COLOR_TIME="$BOLD_GRAY"
  19.  
  20. # Maximal value under which the battery level is displayed
  21. # Recommended value is 75
  22. LP_BATTERY_THRESHOLD=100
  23.  
  24. # Minimal value after which the load average is displayed
  25. # Recommended value is 60
  26. LP_LOAD_THRESHOLD=60
  27.  
  28. # Minimal value after which the temperature is displayed (in celsius degrees)
  29. # Recommended value is 60
  30. LP_TEMP_THRESHOLD=60
  31.  
  32. # The maximum percentage of the screen width used to display the path
  33. # Recommended value is 35
  34. LP_PATH_LENGTH=35
  35.  
  36. # How many directories to keep at the beginning of a shortened path
  37. # Recommended value is 2
  38. LP_PATH_KEEP=2
  39.  
  40. # Do you want to display the hostname, even if not connected through network?
  41. # Defaults to 0 (do not display hostname when localy connected)
  42. # set to 1 if you want to always see the hostname
  43. LP_HOSTNAME_ALWAYS=0
  44.  
  45. # Do you want to display the user, even if he is the same than the logged one?
  46. # Defaults to 1 (always display the user)
  47. # set to 0 if you want to hide the logged user (it will always display different users)
  48. LP_USER_ALWAYS=0
  49.  
  50. # Do you want to display the percentages of load/batteries along with their
  51. # corresponding marks? Set to 0 to only print the colored marks.
  52. # Defaults to 1 (display percentages)
  53. LP_PERCENTS_ALWAYS=1
  54.  
  55. # Do you want to use the permissions feature ?
  56. # Recommended value is 1
  57. LP_ENABLE_PERM=1
  58.  
  59. # Do you want to use the shorten path feature ?
  60. # Recommended value is 1
  61. LP_ENABLE_SHORTEN_PATH=0
  62.  
  63. # Do you want to use the proxy detection feature ?
  64. # Recommended value is 1
  65. LP_ENABLE_PROXY=0
  66.  
  67. # Do you want to use the jobs feature ?
  68. # Recommended value is 1
  69. LP_ENABLE_JOBS=0
  70.  
  71. # Do you want to use the load feature ?
  72. # Recommended value is 1
  73. LP_ENABLE_LOAD=0
  74.  
  75. # Do you want to use the batt feature ?
  76. # Recommended value is 1
  77. LP_ENABLE_BATT=1
  78.  
  79. # Do you want to use vcs features with root account
  80. # Recommended value is 0
  81. LP_ENABLE_VCS_ROOT=0
  82.  
  83. # Do you want to use the git special features ?
  84. # Recommended value is 1
  85. LP_ENABLE_GIT=1
  86.  
  87. # Do you want to use the svn special features ?
  88. # Recommended value is 1
  89. LP_ENABLE_SVN=0
  90.  
  91. # Do you want to use the mercurial special features ?
  92. # Recommended value is 1
  93. LP_ENABLE_HG=0
  94.  
  95. # Do you want to use the fossil special features ?
  96. # Recommended value is 1
  97. LP_ENABLE_FOSSIL=0
  98.  
  99. # Do you want to use the bzr special features ?
  100. # Recommanded value is 1
  101. LP_ENABLE_BZR=0
  102.  
  103. # Show time of the last prompt display
  104. # Recommended value is 0
  105. LP_ENABLE_TIME=1
  106.  
  107. # Show runtime of the last command if over LP_RUNTIME_THRESHOLD
  108. # Recommended value is 0
  109. LP_ENABLE_RUNTIME=1
  110.  
  111. # Minimal runtime to be displayed
  112. # Recommended value is 2
  113. LP_RUNTIME_THRESHOLD=5
  114.  
  115. # Display the virtualenv that is currently activated, if any
  116. # Recommended value is 1
  117. LP_ENABLE_VIRTUALENV=0
  118.  
  119. # Show average system temperature
  120. LP_ENABLE_TEMP=0
  121.  
  122. # When showing time, use an analog clock instead of numeric values.
  123. # The analog clock is "accurate" to the nearest half hour.
  124. # You must have a unicode-capable terminal and a font with the "CLOCK"
  125. # characters.
  126. # Recommended value is 0
  127. LP_TIME_ANALOG=0
  128.  
  129. # Use the liquid prompt as the title of the terminal window
  130. # The content is not customizable, the implementation is very basic,
  131. # and this may not work properly on exotic terminals, thus the
  132. # recommended value is 0
  133. # See LP_TITLE_OPEN and LP_TITLE_CLOSE to change escape characters to adapt this
  134. # feature to your specific terminal.
  135. LP_ENABLE_TITLE=1
  136.  
  137. # Enable Title for screen and byobu
  138. LP_ENABLE_SCREEN_TITLE=0
  139.  
  140. # Use differents colors for differents hosts you SSH in
  141. LP_ENABLE_SSH_COLORS=0
  142.  
  143. # Specify a list of complete and colon (":") separated paths in which, all vcs
  144. # will be disabled
  145. LP_DISABLED_VCS_PATH=""
  146.  
  147. # vim: set et sts=4 sw=4 tw=120 ft=sh:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement