Config Options
Almost every feature in Liquid Prompt can be turned on or off using these config
options. They can either be set before sourcing Liquid Prompt (in .bashrc or
.zshrc, or sourcing a preset), or set in a Liquid Prompt config file.
Note
Config variables set in a config file take precedence over variables set in
the environment or on the command line. Setting a config option on the
command line, then running lp_activate() will overwrite that option
with the value from the config file, if it is set there.
The config file is searched for in the following locations:
~/.liquidpromptrc$XDG_CONFIG_HOME/liquidpromptrc- (ifXDG_CONFIG_HOMEis not set,~/.configis used)$XDG_CONFIG_DIRS/liquidpromptrc-XDG_CONFIG_DIRSis a:delimited array, each value is searched. (ifXDG_CONFIG_DIRSis not set,/etc/xdgis used)/etc/liquidpromptrc
The first file found is sourced.
To get your own configuration, you may want to generate a default configuration by calling the following script:
./tools/config-from-doc.sh > my_liquidpromptrc
Then edit the my_liquidpromptrc file to suits your needs
and copy/link it where you want.
In the event that you synchronize your configuration file across multiple
computers, or if you have an /etc/liquidpromptrc system-wide from which
you’d like to make minor deviations in an individual user account, you can
augment the primary config to add in any local modifications using lines such
as these:
LOCAL_RCFILE=$HOME/.liquidpromptrc.local
[ -f "$LOCAL_RCFILE" ] && source "$LOCAL_RCFILE"
Note
The example config file does not include every config option, and the comments describing the options are less verbose than the descriptions on this page.
Several example of configurations are given in the contrib/presets
directory. Some of these presets can be combined, for instance for changing
the icons, along with the colors.
Each config option is documented with its default value.
Options of type bool accept values of 1 for true and 0 for false.
General
- LP_MARK_PREFIX: string = " "
String added directly before
LP_MARK_DEFAULT, after all other parts of the prompt. Can be used to tag the prompt in a way that is less intrusive thanLP_PS1_PREFIX, or add a newline before the prompt mark.For example:
LP_MARK_PREFIX=$'\n'
- LP_PATH_CHARACTER_KEEP: int = 3
The number of characters to save at the start and possibly the end of a directory name when shortening the path. See
LP_PATH_METHODfor details of the specific methods.New in version 2.0.
- LP_PATH_DEFAULT: string = ""
Deprecated since version 2.0: Use
LP_PATH_METHODset to truncate_to_last_dir instead.Used to define the string used for the path. Could be used to make use of shell path shortening features, like
%2~in Zsh to keep the last two directories of the path.LP_ENABLE_SHORTEN_PATHmust be disabled to have any effect.
- LP_PATH_KEEP: int = 2
The number of directories (counting ‘/’) to display at the beginning of a shortened path.
Set to
1, will display only root. Set to0, will keep nothing from the beginning of the path.LP_ENABLE_SHORTEN_PATHmust be enabled to have any effect.See also:
LP_PATH_LENGTHandLP_PATH_METHOD.Changed in version 2.0: No longer supports a value of
-1.
- LP_PATH_LENGTH: int = 35
The maximum percentage of the terminal width used to display the path before removing the center portion of the path and replacing with
LP_MARK_SHORTEN_PATH.LP_ENABLE_SHORTEN_PATHmust be enabled to have any effect.Note
LP_PATH_KEEPandLP_PATH_METHODhave higher precedence over this option. Important path parts, including directories saved byLP_PATH_KEEP,LP_PATH_VCS_ROOT, and the last directory, will always be displayed, even if the path does not fit in the maximum length.
- LP_PATH_METHOD: string = "truncate_chars_from_path_left"
Sets the method used for shortening the path display when it exceeds the maximum length set by
LP_PATH_LENGTH.truncate_chars_from_path_left: Truncates characters from the start of the path, showing consecutive directories as one shortened section. E.g. in a directory named
~/MyProjects/liquidprompt/tests, it will be shortened to...prompt/tests. The shortened mark isLP_MARK_SHORTEN_PATH.truncate_chars_from_dir_right: Leaves the beginning of a directory name untouched. E.g. directories will be shortened like so:
~/Doc.../Office. How many characters will be untouched is set byLP_PATH_CHARACTER_KEEP. The shortened mark isLP_MARK_SHORTEN_PATH.truncate_chars_from_dir_middle: Leaves the beginning and end of a directory name untouched. E.g. in a directory named
~/MyProjects/Office, then it will be shortened to~/MyP...cts/Office. How many characters will be untouched is set byLP_PATH_CHARACTER_KEEP. The shortened mark isLP_MARK_SHORTEN_PATH.truncate_chars_to_unique_dir: Truncate each directory to the shortest unique starting portion of their name. E.g. in a folder
~/dev/liquidprompt, it will be shortened to~/d/liquidpromptif there is no other directory starting with ‘d’ in the home directory.truncate_to_last_dir: Only display the last directory in the path. In other words, the current directory name.
All methods (other than truncate_to_last_dir) start at the far left of the path (limited by
LP_PATH_KEEP). Only the minimum number of directories needed to fit insideLP_PATH_LENGTHwill be shortened.LP_ENABLE_SHORTEN_PATHmust be enabled to have any effect.New in version 2.0.
- LP_PATH_VCS_ROOT: bool = 1
Display the root directory of the current VCS repository with special formatting, set by
LP_COLOR_PATH_VCS_ROOT. IfLP_ENABLE_SHORTEN_PATHis enabled, also prevent the path shortening from shortening or hiding the VCS root directory.New in version 2.0.
- LP_PS1_POSTFIX: string = ""
A string displayed at the very end of the prompt, after even the prompt mark.
LP_MARK_PREFIXis an alternative that goes before the prompt mark.
- LP_PS1_PREFIX: string = ""
A string displayed at the start of the prompt. Can also be set with
prompt_tag().
- LP_TIME_FORMAT: string = "%H:%M:%S"
The formatting string passed to date(1) using formatting from strftime(3) used to display the current date and/or time.
See also:
LP_ENABLE_TIME.New in version 2.1.
Features
- LP_ALWAYS_DISPLAY_VALUES: bool = 1
Display the actual values of load, batteries, and wifi signal strength along with their corresponding marks. Disable to only print the colored marks.
See also:
LP_ENABLE_LOAD,LP_ENABLE_BATT,LP_ENABLE_DISK, andLP_ENABLE_WIFI_STRENGTH.
- LP_DELIMITER_KUBECONTEXT_PREFIX: string = ""
Delimiter to shorten the Kubernetes context by removing a prefix.
Usage example:
if your context names are cluster-dev and cluster-test, then set this to “-” in order to output dev and test in prompt.
if using AWS EKS then set this to “/” to show only the cluster name, without the rest of the ARN (
arn:aws:eks:$AWS_REGION:$ACCOUNT_ID:cluster/$CLUSTER_NAME)alternatively, if using AWS EKS, set this to “:” to show only cluster/$CLUSTER_NAME. (Note: the prefix removed is a greedy match - it contains all the “:”s in the input.)
If set to the empty string no truncating will occur (this is the default).
See also:
LP_ENABLE_KUBECONTEXT,LP_DELIMITER_KUBECONTEXT_SUFFIX,LP_COLOR_KUBECONTEXT, andLP_MARK_KUBECONTEXT.New in version 2.1.
- LP_DELIMITER_KUBECONTEXT_SUFFIX: string = ""
Delimiter to shorten the Kubernetes context by removing a suffix.
Usage example:
if your context names are dev-cluster and test-cluster, then set this to “-” in order to output dev and test in prompt.
if your context names are dev.k8s.example.com and test.k8s.example.com, then set this to “.” in order to output dev and test in prompt. (Note: the suffix removed is a greedy match - it contains all the “.”s in the input.)
if using OpenShift then set this to “/” to show only the project name without the cluster and user parts.
If set to the empty string no truncating will occur (this is the default).
See also:
LP_ENABLE_KUBECONTEXT,LP_DELIMITER_KUBECONTEXT_PREFIX,LP_COLOR_KUBECONTEXT, andLP_MARK_KUBECONTEXT.New in version 2.1.
- LP_DISABLED_VCS_PATH: string = ""
Deprecated since version 2.0: Use
LP_DISABLED_VCS_PATHSinstead.An colon (
:) separated list of absolute directory paths where VCS features will be disabled. SeeLP_DISABLED_VCS_PATHSfor more information.
- LP_DISABLED_VCS_PATHS: array<string> = ()
An array of absolute directory paths where VCS features will be disabled. Generally this would be used for repositories that are large and slow, where generating VCS information for the prompt would impact prompt responsiveness.
Any subdirectory under the input directory is also disabled, so setting /repos would disable VCS display when the current directory is /repos/a-repo. Setting
("/")would disable VCS display completely.An example value would be:
LP_DISABLED_VCS_PATHS=("/a/svn/repo" "/home/me/my/large/repo")
See also:
LP_MARK_DISABLED.New in version 2.0.
- LP_DISPLAY_VALUES_AS_PERCENTS: bool = 0
When displaying a value, show it as a percentage if possible.
Used in sensors for capacities, see
LP_ENABLE_DISK,LP_ENABLE_BATT.
- LP_ENABLE_AWS_PROFILE: bool = 1
Display the current value of
AWS_PROFILE,AWS_DEFAULT_PROFILE, orAWS_VAULT. AWS_PROFILE and AWS_DEFAULT_PROFILE are used to switch between configuration profiles by the AWS CLI. AWS_VAULT is used by aws-vault to specify the AWS profile in use.See also:
LP_COLOR_AWS_PROFILE.New in version 2.1.
- LP_ENABLE_BATT: bool = 1
Display the status of the battery, if there is one, using color and marks. Add battery percentage colored with
LP_COLORMAPifLP_ALWAYS_DISPLAY_VALUESis enabled.Will be disabled if
acpiis not found on Linux, fails to read the Linux sysfs system, orpmsetis not found on MacOS.See also:
LP_BATTERY_THRESHOLD,LP_MARK_BATTERY,LP_MARK_ADAPTER,LP_COLOR_CHARGING_ABOVE,LP_COLOR_CHARGING_UNDER,LP_COLOR_DISCHARGING_ABOVE, andLP_COLOR_DISCHARGING_UNDER.
- LP_ENABLE_BZR: bool = 1
Display VCS information inside Bazaar repositories.
Will be disabled if
bzris not found.See also:
LP_MARK_BZR.
- LP_ENABLE_CHROOT: bool = 1
Display whether a chroot environment is active.
- LP_ENABLE_CMAKE: bool = 0
Displays the current configuration of CMake, if the directory contains a CMakecache.txt. Displays the compiler, the generator and the build type, separated by
LP_MARK_CMAKE.Will be disabled if
cmakeis not found.The compiler is displayed without its path. The generator is displayed without space, and some names are shortened (Makefiles as Make and Visual Studio as VS), so that, for instance: Unix Makefiles will be displayed as UnixMake. Both fields are randomly colored according to their hash.
The common build type colors can be configured:
Debug, colored with
LP_COLOR_CMAKE_DEBUG(magenta, by default),RelWithDebInfo, colored with
LP_COLOR_CMAKE_RWDI(blue, by default),Release, colored with
LP_COLOR_CMAKE_RELEASE(cyan, by default),any other value would be colored according to its hash.
New in version 2.2.
- LP_ENABLE_COLOR: bool = 1
Use terminal formatting when displaying the prompt.
Note
Not all formatting is correctly disabled if this option is disabled.
Will be disabled if
tputis not found.New in version 2.0.
- LP_ENABLE_CONTAINER: bool = 0
Indicate if the shell is running in a container environment (e.g. Docker, Podman, LXC, Singularity, systemd-nspawn).
Note
Containers may inherit some or even no variables from their parent shell, so this may behave inconsistently with different container software. For example, Docker does not inherit anything unless explicitly told to. Singularity in many configurations inherits most variables but shell functions and zsh hooks might not make it in. For full functionality,
liquidpromptmay need to be sourced inside the child container.See also:
LP_COLOR_CONTAINER.New in version 2.1.
- LP_ENABLE_DETACHED_SESSIONS: bool = 1
Display the number of detached multiplexer sessions.
Will be disabled if neither
screennortmuxare found.Note
This can be slow on some machines, and prompt speed can be greatly improved by disabling it.
See also:
LP_COLOR_JOB_D.New in version 2.0.
- LP_ENABLE_DIRSTACK: bool = 0
Display the size of the directory stack if it is greater than
1.See also:
LP_MARK_DIRSTACKandLP_COLOR_DIRSTACK.New in version 2.0.
- LP_ENABLE_DISPLAY: bool = 1
Detect if the connection has X11 support.
In the default theme, display a green
@if it does; a yellow one if not.See also
LP_COLOR_X11_ONandLP_COLOR_X11_OFF.New in version 2.2.
- LP_ENABLE_DISK: bool = 1
Display
LP_MARK_DISKif the free space on the hard drive hosting the current directory goes below a threshold.Thresholds can be stated either:
as a percentage with
LP_DISK_THRESHOLD_PERC,or an absolute number of kilobytes with
LP_DISK_THRESHOLD.
Display will occur if one of the thresholds is met.
If
LP_ALWAYS_DISPLAY_VALUESis enabled, the prompt will show the available space along withLP_MARK_DISK, if disabled, it will show only the mark.The precision of the available space can be configured with
LP_DISK_PRECISION.If
LP_DISPLAY_VALUES_AS_PERCENTSis enabled, it will show the percentage, if it is disabled, it will show the absolute value in a human-readable form (i.e. with metric prefixed units).New in version 2.2.
- LP_ENABLE_ERROR: bool = 1
Display the last command error code if it is not
0.See also:
LP_COLOR_ERR.New in version 2.0.
- LP_ENABLE_ERROR_MEANING: bool = 0
Display a guess on the last error meaning.
Note
This only enable a limited subset of error codes, that are very probably in use on several systems. To enable more codes (and probably more false positives) see
LP_ENABLE_ERROR_MEANING_EXTENDED.See also:
LP_COLOR_ERR.New in version 2.2.
- LP_ENABLE_ERROR_MEANING_EXTENDED: bool = 0
Extends the set of interpreted error codes to a larger set of (POSIX) codes.
Note
This use a reasonable set of error codes that are common on POSIX systems on x86 or ARM architectures (most notably from
sysexit.handsignal.h). But any software may use its own set of codes, and thus the guess may be wrong.This has no effect if
LP_ENABLE_ERROR_MEANINGis disabled. See also:LP_COLOR_ERR.New in version 2.2.
- LP_ENABLE_ENV_VARS: bool = 1
Display a user-defined set of environment variables. May show if the variables are unset, set, or their actual content.
Watched variables should be added to the
LP_ENV_VARSarray.The resulting prompt section is configured by:
New in version 2.2.
- LP_ENABLE_FOSSIL: bool = 1
Display VCS information inside Fossil repositories.
Will be disabled if
fossilis not found.See also:
LP_MARK_FOSSIL.
- LP_ENABLE_FQDN: bool = 0
Deprecated since version 2.1: Use
LP_HOSTNAME_METHODset to “full” instead.Use the fully qualified domain name (FQDN) instead of the short hostname when the hostname is displayed.
Note
This never functioned as intended, and would only show the FQDN if
/etc/hostnamecontained the full domain name. For a more portable and reliable version, setLP_HOSTNAME_METHODto fqdn.See also:
LP_HOSTNAME_ALWAYS.
- LP_ENABLE_GIT: bool = 1
Display VCS information inside Git repositories.
Will be disabled if
gitis not found.See also:
LP_MARK_GIT.
- LP_ENABLE_HG: bool = 1
Display VCS information inside Mercurial repositories.
Will be disabled if
hgis not found.See also:
LP_MARK_HGandLP_HG_COMMAND.
- LP_ENABLE_HYPERLINKS: bool = 0
Adds clickable links to some elements of the prompt:
If locally connected, adds a link to each displayed elements of the path, using the
file://scheme.Within remote SSH connections, adds a link to each element of the path, but using the
sftp://protocol, configured with the current username and hostname.If the hostname is displayed within an SSH connection, adds a
ssh://URL to it.
The links take the form of a OSC-8 escape sequences containing an Uniform Resource Locator, which should be interpreted by the terminal emulator. If your terminal emulator does not support OSC-8, it may display escapement garbage. As not all terminal emulator support links, this feature is disabled by default.
Warning
Your system should be configured to handle the aforementioned link schemes. If nothing happen when you click on the link, or if the wrong application is used, there is a configuration problem on your system or with your terminal emulator (not with Liquid Prompt).
Note
Liquid Prompt cannot possibly follow complex remote connections. Remote links are thus configured with the current username, and the current fully qualified domain name, as
sftp://<username>@<hostname>/<path>. It is possible that this URL does not work the same way than a manual connection. For instance, if you proxy jumped (i.e. if you jumped from one connection to the other), and/or you logged in with another user, and/or used SSH aliases, then the links probably won’t work the way you may expect.New in version 2.2.
- LP_ENABLE_JOBS: bool = 1
Display the number of running and sleeping shell jobs.
See also:
LP_COLOR_JOB_RandLP_COLOR_JOB_Z.
- LP_ENABLE_KUBECONTEXT: bool = 0
Display the current Kubernetes context.
See also:
LP_ENABLE_KUBE_NAMESPACE,LP_DELIMITER_KUBECONTEXT_PREFIX,LP_DELIMITER_KUBECONTEXT_SUFFIX,LP_COLOR_KUBECONTEXT, andLP_MARK_KUBECONTEXT.New in version 2.1.
- LP_ENABLE_KUBE_NAMESPACE: bool = 0
Display the current Kubernetes default namespace in the current context.
See also:
LP_ENABLE_KUBECONTEXT,LP_DELIMITER_KUBECONTEXT_PREFIX,LP_DELIMITER_KUBECONTEXT_SUFFIX,LP_COLOR_KUBECONTEXT, andLP_MARK_KUBECONTEXT.New in version 2.1.
- LP_ENABLE_LOAD: bool = 1
Display the load average over the past 1 minutes when above the threshold.
See also:
LP_LOAD_THRESHOLD,LP_LOAD_CAP,LP_MARK_LOAD,LP_ALWAYS_DISPLAY_VALUES, andLP_COLORMAP.LP_MARK_LOAD,LP_PERCENTS_ALWAYS, andLP_COLORMAP.
- LP_ENABLE_MODULES: bool = 1
Display the currently loaded Modules.
See also: *
LP_ENABLE_MODULES_VERSIONS, *LP_ENABLE_MODULES_HASHCOLOR, *LP_COLOR_MODULES, *LP_MARK_MODULES_OPEN, *LP_MARK_MODULES_SEP, *LP_MARK_MODULES_CLOSE.New in version 2.2.
- LP_ENABLE_MODULES_VERSIONS: bool = 1
Display the currently loaded modules’ versions, after their names (separated by a slash, as in the
module listcommand).If disabled, only the name of the module is displayed.
See
LP_ENABLE_MODULES.New in version 2.2.
- LP_ENABLE_MODULES_HASHCOLOR: bool = 0
If enabled, each item in the modules section will be randomly colored, according to its hash, instead of using
LP_COLOR_MODULES.See
LP_ENABLE_MODULES.New in version 2.2.
- LP_ENABLE_MULTIPLEXER: bool = 1
Allows getting the name of the current multiplexer (screen or tmux), if any.
If set to
0, also disables:New in version 2.2.
- LP_ENABLE_NODE_VENV: bool = 0
Display the currently activated nodeenv or NVM virtual environment.
See also:
LP_COLOR_NODE_VENV.New in version 2.1.
- LP_ENABLE_OS: bool = 0
Display information about the current Operating System.
Degree of details is controlled by:
Note
As of now, only Linux may have detailed information about the distribution and version.
See also
LP_MARK_OSandLP_MARK_OS_SEPfor configuring the appearance.If no replacement string is provided with
LP_MARK_OS, each item will be randomly colored, according to its hash.New in version 2.2.
- LP_ENABLE_OS_ARCH: bool = 0
Display the processor architecture of the current OS.
See
LP_ENABLE_OS.New in version 2.2.
- LP_ENABLE_OS_DISTRIB: bool = 0
Display the current Linux distribution.
See
LP_ENABLE_OS.New in version 2.2.
- LP_ENABLE_OS_FAMILY: bool = 0
Display the family of the current OS (UNIX, BSD, GNU, or Windows).
See
LP_ENABLE_OS.New in version 2.2.
- LP_ENABLE_OS_KERNEL: bool = 1
Display the name of the kernel type for the current OS.
This may be “Linux”, “FreeBSD”, “SunOS”, “Darwin”, “Cygwin”, “MSYS”, “MinGW”, “OpenBSD”, “DragonFly”.
See
LP_ENABLE_OS.New in version 2.2.
- LP_ENABLE_OS_VERSION: bool = 1
Display the version “codename” of the current Linux distribution.
See
LP_ENABLE_OS.New in version 2.2.
- LP_ENABLE_PATH: bool = 1
Display the current working directory.
New in version 2.2: Before this version, this feature was always enabled.
- LP_ENABLE_PERL_VENV: bool = 1
Display the currently activated PERLBREW or PLENV virtual environment.
See also:
LP_COLOR_PERL_VENV.New in version 2.2.
- LP_ENABLE_PERM: bool = 1
Display a colored
LP_MARK_PERMin the prompt to show when the user does not have write permission to the current directory.See also:
LP_COLOR_WRITEandLP_COLOR_NOWRITE.
- LP_ENABLE_PROXY: bool = 1
Display a
LP_MARK_PROXYmark when an HTTP proxy is detected.See also:
LP_COLOR_PROXY.
- LP_ENABLE_RAM: bool = 1
Display a
LP_MARK_RAMmark when the available amount of Random Access Memory goes below a threshold.Thresholds can be stated either:
as a percentage with
LP_RAM_THRESHOLD_PERC,or an absolute number of kilobytes with
LP_RAM_THRESHOLD.
Display will occur if one of the thresholds is met.
If
LP_ALWAYS_DISPLAY_VALUESis enabled, the prompt will show the available space along withLP_MARK_RAM, if disabled, it will show only the mark.The precision of the displayed available space can be configured with
LP_RAM_PRECISION.If
LP_DISPLAY_VALUES_AS_PERCENTSis enabled, it will show the percentage, if it is disabled, it will show the absolute value in a human-readable form (i.e. with metric prefixed units).New in version 2.2.
- LP_ENABLE_RUBY_VENV: bool = 1
Display the currently activated RVM or RBENV virtual environment.
See also:
LP_RUBY_RVM_PROMPT_OPTIONSandLP_COLOR_RUBY_VENV.New in version 2.1.
- LP_ENABLE_RUNTIME: bool = 1
Display runtime of the previous command if over
LP_RUNTIME_THRESHOLD.See also:
LP_COLOR_RUNTIME.
- LP_ENABLE_RUNTIME_BELL: bool = 0
Ring the terminal bell if the previous command ran longer than
LP_RUNTIME_BELL_THRESHOLD.New in version 1.12.
- LP_ENABLE_SCLS: bool = 1
Display the currently activated Red Hat Software Collection.
See also:
LP_COLOR_VIRTUALENV.
- LP_ENABLE_SCREEN_TITLE: bool = 0
Set the terminal title while in a terminal multiplexer.
LP_ENABLE_TITLEmust be enabled to have any effect.
- LP_ENABLE_SHLVL: bool = 1
Show the value of
$SHLVL, which is the number of nested shells, if the value meets the threshold. For example, if one runsbashinside their shell, it will open a new shell inside their current shell, and this will display “2”.See also:
LP_SHLVL_THRESHOLD,LP_MARK_SHLVL, andLP_COLOR_SHLVL.New in version 2.1.
- LP_ENABLE_SHORTEN_PATH: bool = 1
Use the shorten path feature if the path is too long to fit in the prompt line.
See also:
LP_PATH_METHOD,LP_PATH_LENGTH,LP_PATH_KEEP,LP_PATH_CHARACTER_KEEP, andLP_MARK_SHORTEN_PATH.
- LP_ENABLE_SSH_COLORS: bool = 0
Replace
LP_COLOR_SSHwith a color based on the hash of the hostname. This can give each host a “color feel” to help distinguish them.See also:
LP_HOSTNAME_ALWAYS.
- LP_ENABLE_SUDO: bool = 0
Check if the user has valid
sudocredentials, and display an indicating mark or color.Will be disabled if
sudois not found.Warning
Each evocation of
sudoby default writes to the syslog, and this will runsudoonce each prompt, unless you have NOPASSWD powers. This is likely to make your sysadmin hate you.See also:
LP_COLOR_MARK_SUDO.
- LP_ENABLE_SVN: bool = 1
Display VCS information inside Subversion repositories.
Will be disabled if
svnis not found.See also:
LP_MARK_SVN.
- LP_ENABLE_TEMP: bool = 1
Display the highest system temperature if above the threshold.
Will be disabled if neither
sensorsnoracpiare found, or fails to read from the Linux sysfs system.See also:
LP_TEMP_THRESHOLD,LP_MARK_TEMP,LP_COLORMAP, andLP_TEMP_SYSFS_IGNORE_FILES.
- LP_ENABLE_TERRAFORM: bool = 0
Display the currently activated Terraform workspace.
See also:
LP_COLOR_TERRAFORM.New in version 2.1.
- LP_ENABLE_TIME: bool = 0
Displays the time at which the prompt was shown. The format can be configured with
LP_TIME_FORMAT.See also:
LP_TIME_ANALOGandLP_COLOR_TIME.
- LP_ENABLE_TITLE: bool = 0
Set the terminal title to part or all of the prompt string, depending on the theme.
Must be enabled to be able to set the manual title with
lp_title().Warning
This may not work properly on exotic terminals. Please report any issues.
- LP_ENABLE_TITLE_COMMAND: bool = 1
Postpend the currently running command to the terminal title while the command is running.
LP_ENABLE_TITLEmust be enabled to have any effect.New in version 2.1.
- LP_ENABLE_TMUX_TITLE_PANES: bool = 1
Sets the title of the Tmux pane instead of the window.
LP_ENABLE_TITLEandLP_ENABLE_SCREEN_TITLEmust be enabled to have any effect.New in version 2.2.
- LP_ENABLE_VCS_REMOTE: bool = 0
Enable the display of the remote repository in the VCS state section.
If enabled, will display
LP_MARK_VCS_REMOTE, followed by the remote repository name.In the default theme, if the remote repository has commits not pulled in the local branch, the mark will be showed in
LP_COLOR_COMMITS_BEHIND. If the local repository has commits not pushed to the remote branch, the remote name is shown inLP_COLOR_COMMITS. If neither is the case, nothing will be shown.New in version 2.2.
- LP_ENABLE_VCS_ROOT: bool = 0
Enable VCS features when running as root. This is disabled by default for security.
- LP_ENABLE_VIRTUALENV: bool = 1
Display the currently activated Python or Conda virtual environment.
See also:
LP_COLOR_VIRTUALENV.
- LP_ENABLE_WIFI_STRENGTH: bool = 0
Display an indicator if any wireless signal strength percentage is below
LP_WIFI_STRENGTH_THRESHOLD. Also show the strength percentage ifLP_ALWAYS_DISPLAY_VALUESis enabled.Both Linux and MacOS are supported.
See also:
LP_MARK_WIFIandLP_COLORMAP.New in version 2.1.
- LP_ENV_VARS: array<string> = ()
The set of environment variables that the user wants to watch.
Items should be a string with three space-separated elements of the form “<name> <set>[ <unset>]”, containing:
the name of the variable to watch,
the string to display if the variable is set,
(optionally) the string to display if the variable is not set.
The string used when the variable is set may contain the
%smark, which is replaced by the actual content of the variable.For example:
LP_ENV_VARS=( # Display "V" if VERBOSE is set, nothing if it's unset. "VERBOSE V" # Display the name of the desktop session, if set, T if unset. "DESKTOP_SESSION %s T" # Display "ed:" followed the name of the default editor, nothing if unset. "EDITOR ed:%s" )
See also
LP_ENABLE_ENV_VARS.The resulting prompt section is configured by:
- LP_HG_COMMAND: string = "hg"
The command to use for Mercurial commands. Can be used to replace
hgwithrhgorchg.See also:
LP_ENABLE_HGandLP_MARK_HG.New in version 2.1.
- LP_HIDE_EMPTY_ERROR: bool = 1
Hide the error code returned by a command if the new prompt is displayed after the user hits Ctrl-C or submits an empty command (i.e. empty string or a comment).
See also:
LP_ENABLE_ERROR.New in version 2.2.
- LP_HOSTNAME_ALWAYS: int = 0
Determine when the hostname should be displayed.
Valid values are:
0- show the hostname, except when locally connected1- always show the hostname-1- never show the hostname
See also:
LP_COLOR_HOSTandLP_ENABLE_SSH_COLORS.
- LP_HOSTNAME_METHOD: string = "short"
Determine the method for displaying the hostname.
short: show the first section of the hostname, what is before the first dot. Equal to
\hin Bash or%min Zsh.full: show the full hostname, without any domain name. Equal to
\Hin Bash or%Min Zsh.fqdn: show the fully qualified domain name, if it exists. Defaults to full if not.
pretty: show the pretty hostname, also called “machine display name”. Defaults to full if one does not exist.
See also:
LP_HOSTNAME_ALWAYS.New in version 2.1.
- LP_PERCENTS_ALWAYS: bool = 1
Deprecated since version 2.2: Use
LP_ALWAYS_DISPLAY_VALUESandLP_DISPLAY_VALUES_AS_PERCENTSinstead.Display the actual values of load, batteries, and wifi signal strength along with their corresponding marks. Disable to only print the colored marks.
See also:
LP_ENABLE_LOAD,LP_ENABLE_BATT,LP_ENABLE_WIFI_STRENGTH.
- LP_RUBY_RVM_PROMPT_OPTIONS: array<string> = (i v g s)
An array of single letter switches to customize the RVM prompt output.
Will only have an effect if
LP_ENABLE_RUBY_VENVis enabled and you are using RVM (i.e. no effect with RBENV).New in version 2.1.
- LP_TEMP_SYSFS_IGNORE_FILES: array<string> = ()
Paths to files in the sysfs interface that should be ignored when reading temperature sensors. A path can include globs.
See also
LP_ENABLE_TEMP.New in version 2.2.
- LP_TIME_ANALOG: bool = 0
Shows the time using an analog clock instead of numeric values. The analog clock is “accurate” to the nearest half hour. You must have a Unicode capable terminal and a font with the “CLOCK” characters (U+1F550 - U+1F567).
Will only have an effect if
LP_ENABLE_TIMEis enabled.
- LP_USER_ALWAYS: int = 1
Determine when the username should be displayed.
Valid values are:
0- show the username, except when the user is the login user1- always show the username-1- never show the username
See also:
LP_COLOR_USER_LOGGED,LP_COLOR_USER_ALT, andLP_COLOR_USER_ROOT.Changed in version 2.0: The
-1option was added.
Thresholds
- LP_BATTERY_THRESHOLD: int = 75
The percentage threshold that the battery level needs to fall below before it will be displayed in
LP_COLOR_CHARGING_UNDERorLP_COLOR_DISCHARGING_UNDERcolor. Otherwise, it will be displayed inLP_COLOR_CHARGING_ABOVEorLP_COLOR_DISCHARGING_ABOVEcolor.LP_ENABLE_BATTmust be enabled to have any effect.
- LP_DISK_PRECISION: int = 2
Control the numbers of decimals when displaying the absolute available space of the current hard drive. If set to 0, don’t display decimals. If set to 1 or 2, display decimals.
See
LP_ENABLE_DISK,LP_ALWAYS_DISPLAY_VALUES, andLP_DISPLAY_VALUES_AS_PERCENTS.New in version 2.2.
- LP_DISK_THRESHOLD: int = 100000
Display something if the available space on the hard drive hosting the current directory goes below this absolute threshold in kilobytes.
The threshold for disk can also be set with
LP_DISK_THRESHOLD_PERC, the first one to be reached triggering the display.See also
LP_ENABLE_DISK.New in version 2.2.
- LP_DISK_THRESHOLD_PERC: int = 10
Display something if the available space on the hard drive hosting the current directory goes below this percentage.
The threshold for disk can also be set with
LP_DISK_THRESHOLD, the first one to be reached triggering the display..See also
LP_ENABLE_DISK.New in version 2.2.
- LP_LOAD_CAP: float = 2.0
The value for load average per CPU to display with the max color scaling. Values above this number will still be displayed, but the colors will not increase in intensity.
LP_ENABLE_LOADmust be enabled to have any effect.See also:
LP_COLORMAP.New in version 2.0.
- LP_LOAD_THRESHOLD: float = 0.60
Display the load average per CPU when above this threshold. For historical reasons, this number must have a decimal point (‘.’), or it will be treated as a percentage.
LP_ENABLE_LOADmust be enabled to have any effect.Changed in version 2.0: Accepts float values of actual load averages. Integer values of centiload are still accepted, but deprecated.
- LP_RAM_PRECISION: int = 2
Control the numbers of decimals when displaying the absolute available space of the current system RAM. If set to 0, don’t display decimals. If set to 1 or 2, display decimals.
See
LP_ENABLE_RAM,LP_ALWAYS_DISPLAY_VALUES, andLP_DISPLAY_VALUES_AS_PERCENTS.New in version 2.2.
- LP_RAM_THRESHOLD: int = 100000
Display something if the available RAM space goes below this absolute threshold in kilobytes.
The threshold for RAM can also be set with
LP_RAM_THRESHOLD_PERC, the first one to be reached triggering the display.See also
LP_ENABLE_RAM.New in version 2.2.
- LP_RAM_THRESHOLD_PERC: int = 10
Display something if the available RAM space goes below this percentage.
The threshold for RAM can also be set with
LP_RAM_THRESHOLD, the first one to be reached triggering the display..See also
LP_ENABLE_RAM.New in version 2.2.
- LP_RUNTIME_THRESHOLD: int = 2
Time in seconds that a command must run longer than for its runtime to be displayed.
LP_ENABLE_RUNTIMEmust be enabled to have any effect.
- LP_RUNTIME_BELL_THRESHOLD: int = 10
Time in seconds that a command must run longer than for the terminal bell to be rung.
LP_ENABLE_RUNTIME_BELLmust be enabled to have any effect.New in version 1.12.
- LP_SHLVL_THRESHOLD: int = 2
Number of nested shells before the shell level is shown.
See also:
LP_ENABLE_SHLVL,LP_MARK_SHLVL, andLP_COLOR_SHLVL.New in version 2.2.
- LP_TEMP_THRESHOLD: int = 60
Display the highest system temperature when the temperature is above this threshold (in degrees Celsius).
LP_ENABLE_TEMPmust be enabled to have any effect.
- LP_WIFI_STRENGTH_THRESHOLD: int = 40
Display the lowest wireless signal strength when the strength percentage is below this threshold.
LP_ENABLE_WIFI_STRENGTHmust be enabled to have any effect.New in version 2.1.
Marks
- LP_MARK_ADAPTER: string = "⏚"
Mark used for battery display when charging.
See also:
LP_ENABLE_BATT.
- LP_MARK_BATTERY: string = "⌁"
Mark used for battery display when on battery power.
See also:
LP_ENABLE_BATT.
- LP_MARK_BRACKET_CLOSE: string = "]"
Mark used for closing core prompt brackets. Used by the default theme for enclosing user, host, and current working directory sections.
See also:
LP_MARK_BRACKET_OPEN,LP_MARK_MULTIPLEXER_CLOSE.Changed in version 2.2: Can be disabled by
LP_ENABLE_MULTIPLEXER.
- LP_MARK_BRACKET_OPEN: string = "["
Mark used for opening core prompt brackets. Used by the default theme for enclosing user, host, and current working directory sections.
See also:
LP_MARK_BRACKET_CLOSE,LP_MARK_MULTIPLEXER_OPEN.Changed in version 2.2: Can be disabled by
LP_ENABLE_MULTIPLEXER.
- LP_MARK_BZR: string = "⚯"
Mark used instead of
LP_MARK_DEFAULTto indicate that the current directory is inside of a Bazaar repository.See also:
LP_ENABLE_BZR.
- LP_MARK_CMAKE: string = ":"
Separator used for fields of
LP_ENABLE_CMAKE.New in version 2.2.
- LP_MARK_DEFAULT: string = "$" (Bash) or "%" (Zsh)
Mark used to indicate that the prompt is ready for user input, unless some other context overrides it, like a VCS repository.
- LP_MARK_DEV_CLOSE: string = ">"
Closing of the “development tools” section.
New in version 2.2.
- LP_MARK_DEV_MID: string = "|"
Separator between elements of the “development tools” section.
New in version 2.2.
- LP_MARK_DEV_OPEN: string = "<"
Opening of the “development tools” section.
New in version 2.2.
- LP_MARK_DIRSTACK: string = "⚞"
Mark used to indicate the size of the directory stack.
Here are some alternative marks you might like: ⚟ = ≡ ≣
See also:
LP_ENABLE_DIRSTACKandLP_COLOR_DIRSTACK.New in version 2.0.
- LP_MARK_DISABLED: string = "⌀"
Mark used instead of
LP_MARK_DEFAULTto indicate that the current directory is disabled for VCS display throughLP_DISABLED_VCS_PATHS.
- LP_MARK_DISK: string = "🖴 "
Mark used to indicate that the available disk space is too low. See
LP_ENABLE_DISK.New in version 2.2.
- LP_MARK_ENV_VARS_OPEN: string = "("
Mark used to start the user-defined environment variables watch list.
See also:
New in version 2.2.
- LP_MARK_ENV_VARS_SEP: string = " "
Mark used to separate items of the user-defined environment variables watch list.
See also:
New in version 2.2.
- LP_MARK_ENV_VARS_CLOSE: string = ")"
Mark used to end the user-defined environment variables watch list.
See also:
New in version 2.2.
- LP_MARK_FOSSIL: string = "⌘"
Mark used instead of
LP_MARK_DEFAULTto indicate that the current directory is inside of a Fossil repository.See also:
LP_ENABLE_FOSSIL.
- LP_MARK_GIT: string = "±"
Mark used instead of
LP_MARK_DEFAULTto indicate that the current directory is inside of a Git repository.See also:
LP_ENABLE_GIT.
- LP_MARK_HG: string = "☿"
Mark used instead of
LP_MARK_DEFAULTto indicate that the current directory is inside of a Mercurial repository.See also:
LP_ENABLE_HGandLP_HG_COMMAND.
- LP_MARK_JOBS_SEPARATOR: string = "/"
Mark used to separate elements of
LP_JOBS.See also
LP_ENABLE_JOBS.New in version 2.2.
- LP_MARK_KUBECONTEXT: string = "⎈"
Mark used to prefix the current Kubernetes context.
Used to visually distinguish the Kubernetes context from other context fields like the Python virtual environment (see
LP_ENABLE_VIRTUALENV) and the Red Hat Software Collection (seeLP_ENABLE_SCLS).The display of Unicode characters varies among Terminal and Font settings, so you might try alternative marks. Single symbol alternatives to the default ⎈ (U+2388, Helm Symbol) are ☸ (U+2638, Wheel of Dharma) or κ (U+03BA, Greek Small Letter Kappa).
See also:
LP_ENABLE_KUBECONTEXT.New in version 2.1.
- LP_MARK_LOAD: string = "⌂"
Mark used before displaying load average.
See also:
LP_ENABLE_LOAD.
- LP_MARK_MODULES_OPEN: string = ""
Mark used before displaying loaded modules.
See also:
LP_ENABLE_MODULES.
- LP_MARK_MODULES_CLOSE: string = ""
Mark used after displaying loaded modules.
See also:
LP_ENABLE_MODULES.
- LP_MARK_MODULES_SEP: string = ":"
Mark used between loaded modules.
See also:
LP_ENABLE_MODULES.
- LP_MARK_MULTIPLEXER_CLOSE: string = $LP_MARK_BRACKET_CLOSE
Mark used for closing core prompt brackets. Used by the default theme when inside of a multiplexer.
See also:
LP_MARK_MULTIPLEXER_OPEN,LP_MARK_BRACKET_CLOSE.New in version 2.1.
Changed in version 2.2: Can be disabled by
LP_ENABLE_MULTIPLEXER.
- LP_MARK_MULTIPLEXER_OPEN: string = $LP_MARK_BRACKET_OPEN
Mark used for opening core prompt brackets. Used by the default theme when inside of a multiplexer.
See also:
LP_MARK_MULTIPLEXER_CLOSE,LP_MARK_BRACKET_OPEN.New in version 2.1.
Changed in version 2.2: Can be disabled by
LP_ENABLE_MULTIPLEXER.
- LP_MARK_OS: array<string> = ()
A list of pair of strings to be replaced by another string when displaying information about the OS.
Each pair in the list configures the match, then the replacement string.
For instance, if you set
LP_MARK_OS=("Linux" "L")andLP_ENABLE_OS=1 ; LP_ENABLE_OS_FAMILY=1, then any occurrence of “Linux” will be replaced by an “L” in the OS section.It is possible to use presets colors in the replacement string (see the Colors section below). Note that if a replacement occurs, the result will not be colored automatically.
For example, to shorten known names, you can use the following configuration (if your font supports those characters):
LP_MARK_OS=( # Arch "x86_64" "${BLUE}x64${NO_COL}" "i386" "i3" "i686" "i6" "aarch64" "${GREEN}a64${NO_COL}" # Families "BSD" "${RED}BSD${NO_COL}" "Windows" "🪟" "Unix" "U" "GNU" "🐮" # Kernels "FreeBSD" "👹" "DragonFly" "🦋" "OpenBSD" "🐡" "Darwin" "🍎" "SunOS" "${BOLD_YELLOW}☀${NO_COL}" "Cygwin" "🦢" "MSYS" "M" "MinGW" "GW" "Linux" "🐧" )
See
LP_ENABLE_OS.New in version 2.2.
- LP_MARK_OS_SEP: string = "/"
The character used to separate items of the OS section.
See
LP_ENABLE_OS.New in version 2.2.
- LP_MARK_PERM: string = ":"
Mark used by default separate hostname and current working directory, and is colored to indicate user permissions on the current directory.
Is still used (without colors) if
LP_ENABLE_PERMis disabled.New in version 1.12.
- LP_MARK_PROXY: string = "↥"
Mark used to indicate a proxy is active.
See also:
LP_ENABLE_PROXY.
- LP_MARK_RAM: string = M
Mark used before displaying available Random Access Memory. See
LP_ENABLE_RAM.New in version 2.2.
- LP_MARK_SHLVL: string = "└"
Mark used to indicate the shell is inside another shell.
See also:
LP_ENABLE_SHLVL,LP_SHLVL_THRESHOLD, andLP_COLOR_SHLVL.New in version 2.1.
- LP_MARK_SHORTEN_PATH: string = " … "
Mark used to indicate a portion of the path was hidden to save space. Not all shortening methods use this mark, some only use
LP_COLOR_PATH_SHORTENED.See also:
LP_ENABLE_SHORTEN_PATH,LP_PATH_METHOD.
- LP_MARK_STASH: string = "+"
Mark used to indicate at least one stash or shelve exists in the current repository.
- LP_MARK_SVN: string = "‡"
Mark used instead of
LP_MARK_DEFAULTto indicate that the current directory is inside of a Subversion repository.See also:
LP_ENABLE_SVN.
- LP_MARK_TEMP: string = "θ"
Mark used before displaying temperature.
See also:
LP_ENABLE_TEMP.
- LP_MARK_UNTRACKED: string = "*"
Mark used to indicate untracked or extra files exist in the current repository.
- LP_MARK_VCS_REMOTE: string = "⭚"
Mark used to indicate the VCS remote repository name and status.
See
LP_ENABLE_VCS_REMOTE.New in version 2.2.
- LP_MARK_VCSH: string = "|"
Mark used instead of
LP_MARK_DEFAULTto indicate that the current directory is inside of a VCSH repository.Since VCSH repositories are Git repositories under the hood,
LP_MARK_GITis surrounded in this mark.
- LP_MARK_WIFI: string = "📶"
Mark used before displaying wireless signal strength.
See also:
LP_ENABLE_WIFI_STRENGTH.New in version 2.1.
Colors
These color strings will be used without modification, so they need to be valid
terminal escape sequences, either generated with lp_terminal_format() or
using the $COLOR variables.
Valid preset color variables are:
BOLD- bold formatting only.BLACKBOLD_GRAY- actually bold blackREDBOLD_REDGREENBOLD_GREENYELLOWBOLD_YELLOWBLUEBOLD_BLUEPURPLEorMAGENTABOLD_PURPLE,BOLD_MAGENTAorPINKCYANBOLD_CYANWHITEBOLD_WHITEWARN_RED- black foreground, red backgroundCRIT_RED- white foreground, red backgroundDANGER_RED- yellow foreground, red background
- LP_COLORMAP: array<string> = ( "" $GREEN $BOLD_GREEN $YELLOW $BOLD_YELLOW $RED $BOLD_RED $WARN_RED $CRIT_RED $DANGER_RED )
An array of colors that is used by the battery, load, temperature, and wireless signal strength features to indicate the severity level of their status. A normal or low status will use the first index, while the last index is the most severe.
See also:
LP_ENABLE_BATT,LP_ENABLE_LOAD,LP_ENABLE_TEMP, andLP_ENABLE_WIFI_STRENGTH.
- LP_COLOR_AWS_PROFILE: string = $YELLOW
Color used to display the current active AWS Profile.
See also:
LP_ENABLE_AWS_PROFILE.New in version 2.1.
- LP_COLOR_CHANGES: string = $RED
Color used to indicate that the current repository is not clean, or in other words, has changes that have not been committed.
- LP_COLOR_CHARGING_ABOVE: string = $GREEN
Color used to indicate that the battery is charging and above the
LP_BATTERY_THRESHOLD.See also:
LP_ENABLE_BATT.
- LP_COLOR_CHARGING_UNDER: string = $YELLOW
Color used to indicate that the battery is charging and under the
LP_BATTERY_THRESHOLD.See also:
LP_ENABLE_BATT.
- LP_COLOR_CMAKE_BUILD: string = $MAGENTA
Color used to display the build type in the CMake segment.
See
LP_ENABLE_CMAKE.New in version 2.2.
- LP_COLOR_CMAKE_C: string = $MAGENTA
Color used to display the C compiler in the CMake segment.
See
LP_ENABLE_CMAKE.New in version 2.2.
- LP_COLOR_CMAKE_CXX: string = $MAGENTA
Color used to display the C++ compiler in the CMake segment.
See
LP_ENABLE_CMAKE.New in version 2.2.
- LP_COLOR_CMAKE_DEBUG: string = $MAGENTA
Color for the Debug build type of the CMake section.
See also:
LP_COLOR_CMAKE_RWDIandLP_COLOR_CMAKE_RELEASE.New in version 2.2.
- LP_COLOR_CMAKE_RWDI: string = $BLUE
Color for the RelWithDebInfo build type of the CMake section.
See also:
LP_COLOR_CMAKE_DEBUGandLP_COLOR_CMAKE_RELEASE.New in version 2.2.
- LP_COLOR_CMAKE_RELEASE: string = $CYAN
Color for the Release build type of the CMake section.
See also:
LP_COLOR_CMAKE_DEBUGandLP_COLOR_CMAKE_RWDI.New in version 2.2.
- LP_COLOR_COMMITS_BEHIND: string = $BOLD_RED
Color used to indicate that the current repository has a remote tracking branch that has commits that the local branch does not.
May be used by
LP_ENABLE_VCS_REMOTE.
- LP_COLOR_COMMITS: string = $YELLOW
Color used to indicate that the current repository has commits on the local branch that the remote tracking branch does not.
Also used to color
LP_MARK_STASHandLP_MARK_VCS_REMOTE.
- LP_COLOR_CONTAINER: string = $BOLD_BLUE
Color used to indicate that the current shell is running in a container.
New in version 2.1.
- LP_COLOR_DIFF: string = $PURPLE
Color used to indicate that the current repository has lines that have been changed since the last commit.
- LP_COLOR_DIRSTACK: string = $BOLD_YELLOW
Color used to indicate the size of the directory stack.
See also:
LP_ENABLE_DIRSTACKandLP_MARK_DIRSTACK.New in version 2.0.
- LP_COLOR_DISCHARGING_ABOVE: string = $YELLOW
Color used to indicate that the battery is discharging and above the
LP_BATTERY_THRESHOLD.See also:
LP_ENABLE_BATT.
- LP_COLOR_DISCHARGING_UNDER: string = $RED
Color used to indicate that the battery is discharging and above the
LP_BATTERY_THRESHOLD.See also:
LP_ENABLE_BATT.
- LP_COLOR_DISK: string = $BOLD_RED
Color used for displaying information about the hard drive hosting the current directory.
See also
LP_COLOR_DISK_UNITS,LP_ENABLE_DISK,LP_ALWAYS_DISPLAY_VALUES, andLP_PERCENTS_ALWAYS.New in version 2.2.
- LP_COLOR_DISK_UNITS: string = $RED
Color used for displaying the unit of the available space on the hard drive hosting the current directory.
See also
LP_COLOR_DISK,LP_ENABLE_DISK,LP_ALWAYS_DISPLAY_VALUES, andLP_PERCENTS_ALWAYS.New in version 2.2.
- LP_COLOR_ERR: string = $PURPLE
Color used to indicate the last command exited with a non-zero return code.
See also:
LP_ENABLE_ERROR.
- LP_COLOR_ENV_VARS_SET: string = $BOLD_BLUE
Color of the environment variables that are set, in the user-defined watch list.
See also: -
LP_ENABLE_ENV_VARS-LP_ENV_VARS-LP_COLOR_ENV_VARS_UNSET-LP_MARK_ENV_VARS_OPEN-LP_MARK_ENV_VARS_SEP-LP_MARK_ENV_VARS_CLOSE
- LP_COLOR_ENV_VARS_UNSET: string = $BLUE
Color of the environment variables that are unset, in the user-defined watch list.
See also:
New in version 2.2.
- LP_COLOR_HOST: string = ""
Color used for the hostname when connected locally.
See also:
LP_HOSTNAME_ALWAYS.
- LP_COLOR_IN_MULTIPLEXER: string = $BOLD_BLUE
Color used for
LP_MARK_MULTIPLEXER_OPENandLP_MARK_MULTIPLEXER_CLOSEif the terminal is in a multiplexer.Changed in version 2.2: Can be disabled by
LP_ENABLE_MULTIPLEXER.
- LP_COLOR_JOB_D: string = $YELLOW
Color used for detached multiplexer sessions.
See also:
LP_ENABLE_DETACHED_SESSIONS.
- LP_COLOR_JOB_R: string = $BOLD_YELLOW
Color used for running shell jobs.
See also:
LP_ENABLE_JOBS.
- LP_COLOR_JOB_Z: string = $BOLD_YELLOW
Color used for sleeping shell jobs.
See also:
LP_ENABLE_JOBS.
- LP_COLOR_KUBECONTEXT: string = $CYAN
Color used for the current Kubernetes context.
See also:
LP_ENABLE_KUBECONTEXT.New in version 2.1.
- LP_COLOR_MARK: string = $BOLD
Color used for
LP_MARK_DEFAULT.
- LP_COLOR_MARK_ROOT: string = $BOLD_RED
Color used for
LP_MARK_DEFAULTwhen the current user is root, shown instead ofLP_COLOR_MARK.
- LP_COLOR_MARK_SUDO: string = $LP_COLOR_MARK_ROOT
Color used for
LP_MARK_DEFAULTwhensudois active, shown instead ofLP_COLOR_MARK.See also:
LP_ENABLE_SUDO.
- LP_COLOR_MODULES: string = $BLUE
Color used for displaying currently loaded modules (if
LP_ENABLE_MODULES_HASHCOLORis disabled).See also:
LP_ENABLE_MODULES.
- LP_COLOR_NODE_VENV: string = $LP_COLOR_VIRTUALENV
Color used for displaying a Node.js virtual environment.
See also:
LP_ENABLE_NODE_VENV.New in version 2.1.
- LP_COLOR_NOWRITE: string = $RED
Color used for
LP_MARK_PERMwhen the user does not have write permissions to the current working directory.See also:
LP_ENABLE_PERMandLP_COLOR_WRITE.
- LP_COLOR_OS_ARCH: string = $MAGENTA
Color used for OS’ architecture (e.g. “x86_64”, “i686”…).
See also:
LP_ENABLE_OSandLP_ENABLE_OS_ARCH.New in version 2.2.
- LP_COLOR_OS_DISTRIB: string = $MAGENTA
Color used for OS’ distribution (e.g. “Ubuntu”, “Debian”…).
Note
Will probably only work on Linux-like systems.
See also:
LP_ENABLE_OSandLP_ENABLE_OS_DISTRIB.New in version 2.2.
- LP_COLOR_OS_FAMILY: string = $MAGENTA
Color used for OS’ family (e.g. “BSD”, “GNU”…).
See also:
LP_ENABLE_OSandLP_ENABLE_OS_FAMILY.New in version 2.2.
- LP_COLOR_OS_KERNEL: string = $MAGENTA
Color used for OS’ kernel (e.g. “Linux”, “MinGW”…).
See also:
LP_ENABLE_OSandLP_ENABLE_OS_KERNEL.New in version 2.2.
- LP_COLOR_OS_VERSION: string = $MAGENTA
Color used for OS’ version codename (e.g. “focal”, “buster”…).
Note
Will probably only work on Linux-like systems.
See also:
LP_ENABLE_OSandLP_ENABLE_OS_VERSION.New in version 2.2.
- LP_COLOR_PATH: string = ""
Color used for the current working directory.
If
LP_COLOR_PATH_LAST_DIR,LP_COLOR_PATH_VCS_ROOT,LP_COLOR_PATH_SEPARATOR, orLP_COLOR_PATH_SHORTENEDare set, their respective sections will be colored with them instead.Changed in version 2.0: Default value changed from
$BOLDto the default color.
- LP_COLOR_PATH_LAST_DIR: string = $BOLD
Color used for the last path segment, which corresponds to the current directory basename.
New in version 2.0.
- LP_COLOR_PATH_ROOT: string = $BOLD_YELLOW
Color used in place of
LP_COLOR_PATHwhen the current user is root.
- LP_COLOR_PATH_SEPARATOR: string = lp_terminal_format 8 -1 0 0 -1 # Grey
Color used for the separator (‘/’) between path segments. If set to the empty string, the separator will take the format of the path segment before it.
- LP_COLOR_PATH_SHORTENED: string = lp_terminal_format 8 -1 0 0 -1 # Grey
Color used for path segments that have been shortened.
LP_ENABLE_SHORTEN_PATHmust be enabled to have any effect.
- LP_COLOR_PATH_VCS_ROOT: string = $BOLD
Color used for the path segment corresponding to the current VCS repository root directory.
LP_PATH_VCS_ROOTmust be enabled to have any effect.New in version 2.0.
- LP_COLOR_PERL_VENV: string = $LP_COLOR_VIRTUALENV
Color used for displaying a Perl virtual environment.
See also:
LP_ENABLE_PERL_VENV.New in version 2.2.
- LP_COLOR_PROXY: string = $BOLD_BLUE
Color used for
LP_MARK_PROXY.See also:
LP_ENABLE_PROXY.
- LP_COLOR_RAM: string = $BOLD_RED
Color used for displaying information about the available RAM.
See also
LP_COLOR_RAM_UNITS,LP_ENABLE_RAM,LP_ALWAYS_DISPLAY_VALUES, andLP_PERCENTS_ALWAYS.New in version 2.2.
- LP_COLOR_RAM_UNITS: string = $RED
Color used for displaying the unit of the available RAM.
See also
LP_COLOR_RAM,LP_ENABLE_RAM,LP_ALWAYS_DISPLAY_VALUES, andLP_PERCENTS_ALWAYS.New in version 2.2.
- LP_COLOR_RUBY_VENV: string = $LP_COLOR_VIRTUALENV
Color used for displaying a Ruby virtual environment.
See also:
LP_ENABLE_RUBY_VENV.New in version 2.1.
- LP_COLOR_RUNTIME: string = $YELLOW
Color used for displaying the last command runtime.
See also:
LP_ENABLE_RUNTIME.
- LP_COLOR_SHLVL: string = $BOLD_GREEN
Color used for displaying the nested shell level.
See also:
LP_ENABLE_SHLVL,LP_SHLVL_THRESHOLD, andLP_MARK_SHLVL.New in version 2.1.
- LP_COLOR_SSH: string = $BLUE
Color used for displaying the hostname when connected with SSH.
Has no effect if
LP_ENABLE_SSH_COLORSis enabled.See also:
LP_HOSTNAME_ALWAYS.
- LP_COLOR_SU: string = $BOLD_YELLOW
Color used for displaying the hostname when running under
suorsudo.See also:
LP_HOSTNAME_ALWAYS.
- LP_COLOR_TELNET: string = $WARN_RED
Color used for displaying the hostname when connected with Telnet.
See also:
LP_HOSTNAME_ALWAYS.
- LP_COLOR_TERRAFORM: string = $PINK
Color used for displaying a Terraform workspace.
See also:
LP_ENABLE_TERRAFORM.New in version 2.1.
- LP_COLOR_TIME: string = $BLUE
Color used for displaying the current time.
See also:
LP_ENABLE_TIME.
- LP_COLOR_UP: string = $GREEN
Color used to indicate that the current repository is up-to-date and no commits differ from the remote tracking branch.
- LP_COLOR_USER_ALT: string = $BOLD
Color used for displaying the username when running as a different user than the login user.
- LP_COLOR_USER_LOGGED: string = ""
Color used for displaying the username when running as the login user.
See also:
LP_USER_ALWAYS.
- LP_COLOR_USER_ROOT: string = $BOLD_YELLOW
Color used for displaying the username when running as root.
- LP_COLOR_VIRTUALENV: string = $CYAN
Color used for displaying a Python virtual environment or Red Hat Software Collection.
See also:
LP_ENABLE_VIRTUALENVandLP_ENABLE_SCLS.
- LP_COLOR_WRITE: string = $GREEN
Color used for
LP_MARK_PERMwhen the user has write permissions to the current working directory.See also:
LP_ENABLE_PERMandLP_COLOR_NOWRITE.
- LP_COLOR_X11_OFF: string = $YELLOW
Color used for indicating that a display is not connected.
See also
LP_ENABLE_DISPLAY.
- LP_COLOR_X11_ON: string = $GREEN
Color used for indicating that a display is connected.
See also
LP_ENABLE_DISPLAY.