File: theme-preview.sh

package info (click to toggle)
liquidprompt 2.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,572 kB
  • sloc: sh: 3,621; python: 33; makefile: 15
file content (348 lines) | stat: -rwxr-xr-x 7,540 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#!/bin/bash
#shellcheck disable=SC2317
set -u

usage() {
  printf '
Usage: %s theme [options...] [sourced files...]

Print out example prompts based on a standard set of input conditions. Designed
to showcase Liquid Prompt themes.

Options:
  -h, --help                 Print this help text.
  --reproducible             Set the terminal size to a static value. Load no
                             config files. Overrides any --config-file or
                             --user-config arguments.
  --user-config              Load the user, or if not found, the system config
                             file.
  --template-file=<filename> Load <filename> as a default theme template.
                             Implies "default" theme.
  --config-file=<filename>   Load <filename> as an additional Liquid Prompt
                             config file or config presets.

Example usage:
%s alternate_vcs themes/alternate_vcs/alternate_vcs.theme
%s unfold themes/unfold/unfold.theme --reproducible
%s unfold themes/unfold/unfold.theme --user-config --config-file contrib/presets/colors/256-colors-dark.conf
%s default --template-file templates/minimal/minimal.ps1
' 1>&2 "$0" "$0" "$0" "$0" "$0"
}

sourced_files=()
config_files=()
options_ended=false
user_config=false
reproducible=false
unset theme

while [[ -n ${1-} ]]; do
  if [[ ($1 == "--"* || $1 == "-h") && $options_ended == "false" ]]; then
    if [[ $1 == "--" ]]; then
      options_ended=true
    elif [[ $1 == "--help" || $1 == "-h" ]]; then
      usage
      exit 0
    elif [[ $1 == "--config-file" ]]; then
      config_files+=("$2")
      shift
    elif [[ $1 == "--config-file="* ]]; then
      config_files+=("${1#"--config-file="}")
    elif [[ $1 == "--template-file" ]]; then
      LP_PS1_FILE="$2"
      shift
    elif [[ $1 == "--template-file="* ]]; then
      LP_PS1_FILE="${1#"--template-file="}"
    elif [[ $1 == "--user-config" ]]; then
      user_config=true
    elif [[ $1 == "--reproducible" ]]; then
      reproducible=true
    else
      printf 'Error: unknown option "%s"\n' "$1"
      exit 1
    fi
  elif [[ -z ${theme+x} ]]; then
    theme=$1
  else
    sourced_files+=("$1")
  fi
  shift
done

if [[ -z ${theme-} ]]; then
  if [[ -n ${LP_PS1_FILE-} ]]; then
    theme=default
  else
    usage
    exit 2
  fi
fi

activate_args=()
if [[ $user_config == "false" ]]; then
  activate_args+=("--no-config")
fi
activate_args+=(${config_files[@]+"${config_files[@]}"})

if [[ $reproducible == "true" ]]; then
  # Reset args to only no config.
  activate_args=("--no-config")

  if [[ $user_config == "true" || ${#config_files[@]} -gt 0 ]]; then
    printf "WARNING: the use of '--reproducible' overrides --config-file and --user-config.\n" >&2
  fi
fi

. ./liquidprompt --no-activate

for file in ${sourced_files[@]+"${sourced_files[@]}"}; do
  # shellcheck disable=SC1090
  . "$file"
done

# Liquid Prompt depends on PS1 being set to detect if it has installed itself.
PS1="$ "

# Since the shell is not evaluating PS1, if we print the PS1 to the console,
# the shell escape sequences will not be hidden, and it will look wrong. We
# cannot strip them ahead of time, since they are required to know where to
# look to remove formatting, so we have to do it right before printing it.
__remove_shell_escapes() {  # PS1 -> PS1
  PS1="${PS1//"${_LP_OPEN_ESC}"/}"
  PS1="${PS1//"${_LP_CLOSE_ESC}"/}"
}


## Short

# Configure options

LP_ENABLE_PERM=0
LP_ENABLE_SHORTEN_PATH=0
LP_ENABLE_PROXY=0
LP_ENABLE_TEMP=0
LP_ENABLE_JOBS=0
LP_ENABLE_DETACHED_SESSIONS=0
LP_ENABLE_LOAD=0
LP_ENABLE_BATT=0
LP_ENABLE_GIT=0
LP_ENABLE_SVN=0
LP_ENABLE_FOSSIL=0
LP_ENABLE_HG=0
LP_ENABLE_BZR=0
LP_ENABLE_TIME=0
LP_ENABLE_RUNTIME=0
LP_ENABLE_RUNTIME_BELL=0
LP_ENABLE_VIRTUALENV=0
LP_ENABLE_NODE_VENV=0
LP_ENABLE_RUBY_VENV=0
LP_ENABLE_TERRAFORM=0
LP_ENABLE_SCLS=0
LP_ENABLE_VCS_ROOT=1
LP_DISABLED_VCS_PATHS=()
LP_ENABLE_TITLE=0
LP_ENABLE_SUDO=0
LP_ENABLE_COLOR=1
LP_ENABLE_ERROR=0
LP_ENABLE_SHLVL=0
LP_ENABLE_PERL_VENV=0
LP_ENABLE_AWS_PROFILE=0
LP_USER_ALWAYS=1
LP_HOSTNAME_ALWAYS=-1

LP_MARK_DEFAULT='$'

# Stub data functions

_lp_username() {
  lp_username=user
}

# Setup Env

HOME=/home/user
PWD=$HOME

# Activate and generate

lp_activate ${activate_args[@]+"${activate_args[@]}"}
# Only needs to be done once
lp_theme "$theme" || exit "$?"
if [[ $reproducible == "true" ]]; then
  COLUMNS=160
fi
__lp_set_prompt
__remove_shell_escapes

printf 'Short prompt:\n\n%s\n\n' "$PS1"


## Medium

# Configure options

# lp_activate() is too smart: it will disable features if the tool is not installed.
# To make sure that doesn't happen, set these config options after activation too.
_config() {
  LP_ENABLE_JOBS=1
  LP_HOSTNAME_ALWAYS=1
  LP_ENABLE_GIT=1

  if [[ $reproducible == "true" ]]; then
    COLUMNS=160
  fi
}
_config

# Stub data functions

_lp_jobcount() {
  lp_running_jobs=1
  lp_stopped_jobs=0
}
_lp_hostname() {
  _lp_connection
  lp_hostname=server
}
_lp_connection() {
  lp_connection=ssh
  SSH_CONNECTION="192.168.0.254 56314 192.168.0.1 22"
}
_lp_connected_display() { return 1; }
_lp_find_vcs() {
  lp_vcs_type=git
  lp_vcs_root=$PWD
}
_lp_git_active() { return 0; }
_lp_git_branch() {
  lp_vcs_branch=main
}
_lp_git_bookmark() { return 2; }
_lp_git_tag() { return 2; }
_lp_git_commit_id() { return 2; }
_lp_git_head_status() { return 2; }
_lp_git_stash_count() { return 2; }
_lp_git_commits_off_remote() { return 2; }
_lp_git_untracked_files() { return 2; }
_lp_git_uncommitted_files() { return 2; }
_lp_git_uncommitted_lines() { return 2; }
_lp_git_unstaged_files() { return 2; }
_lp_git_unstaged_lines() { return 2; }

# Setup Env

PWD=$HOME/liquidprompt

# Activate and generate

lp_activate ${activate_args[@]+"${activate_args[@]}"}
_config
__lp_set_prompt
__remove_shell_escapes

printf 'Medium prompt:\n\n%s\n\n' "$PS1"


## Long

# Configure options

_long_config() {
  LP_ENABLE_SHORTEN_PATH=1
  LP_PATH_LENGTH=29
  LP_PATH_KEEP=1
  LP_PATH_VCS_ROOT=1
  LP_ENABLE_TIME=1
  LP_TIME_ANALOG=1
  LP_ENABLE_BATT=1
  LP_ENABLE_LOAD=1
  LP_ENABLE_TEMP=1
  LP_ENABLE_DETACHED_SESSIONS=1
  LP_ENABLE_PERM=1
  LP_ENABLE_VIRTUALENV=1
  LP_ENABLE_RUNTIME=1
  LP_ENABLE_ERROR=1
  LP_ENABLE_DIRSTACK=1
  LP_ENABLE_SHLVL=1
  LP_ALWAYS_DISPLAY_VALUES=1
  LP_DISPLAY_VALUES_AS_PERCENTS=1

  if [[ $reproducible == "true" ]]; then
    COLUMNS=160
  fi
}
_long_config

# Stub data functions

_lp_analog_time() {
  lp_analog_time="🕤"
}
_lp_battery() {
  lp_battery=24
}
_lp_load() {
  lp_load=1.68
  lp_load_adjusted=42
}
_lp_temperature() {
  lp_temperature=90
}
_lp_detached_sessions() {
  lp_detached_sessions=3
}
_lp_jobcount() {
  lp_running_jobs=2
  lp_stopped_jobs=1
}
_lp_python_env() {
  lp_python_env=pyenv
}
_lp_find_vcs() {
  lp_vcs_type=git
  lp_vcs_root="${HOME}/code/liquidprompt"
}
_lp_git_uncommitted_files() {
  lp_vcs_uncommitted_files=2
}
_lp_git_uncommitted_lines() {
  lp_vcs_uncommitted_i_lines=10
  lp_vcs_uncommitted_d_lines=5
}
_lp_git_commits_off_remote() {
  lp_vcs_commit_ahead=3
  lp_vcs_commit_behind=1
}
_lp_git_stash_count() {
  lp_vcs_stash_count=1
}
_lp_git_untracked_files() {
  lp_vcs_untracked_files=1
}
_lp_runtime_format() {
  lp_runtime_format=20s
}
_lp_error() {
  lp_error=125
}
_lp_dirstack() {
  lp_dirstack=3
}
_lp_shell_level() {
  lp_shell_level=2
}

# Setup Env

PWD="${HOME}/code/liquidprompt/docs/theme"

# Activate and generate

lp_activate ${activate_args[@]+"${activate_args[@]}"}
_long_config
__lp_set_prompt
__remove_shell_escapes

printf 'Long prompt:\n\n%s\n\n' "$PS1"

# vim: ft=sh et sts=2 sw=2 tw=120