-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_pfetch
73 lines (57 loc) · 1.53 KB
/
dot_pfetch
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
# Which information to display.
# NOTE: If 'ascii' will be used, it must come first.
# Default: first example below
# Valid: space separated string
#
# OFF by default: shell editor wm de palette
export PF_INFO="ascii title os host kernel uptime pkgs memory"
# Example: Only ASCII.
# export PF_INFO="ascii"
# Example: Only Information.
# export PF_INFO="title os host kernel uptime pkgs memory"
# A file to source before running pfetch.
# Default: unset
# Valid: A shell script
# export PF_SOURCE=""
# Separator between info name and info data.
# Default: unset
# Valid: string
export PF_SEP=" : "
# Enable/Disable colors in output:
# Default: 1
# Valid: 1 (enabled), 0 (disabled)
export PF_COLOR=1
# Color of info names:
# Default: unset (auto)
# Valid: 0-9
# export PF_COL1=4
# Color of info data:
# Default: unset (auto)
# Valid: 0-9
# export PF_COL2=9
# Color of title data:
# Default: unset (auto)
# Valid: 0-9
# export PF_COL3=1
# Alignment padding.
# Default: unset (auto)
# Valid: int
# export PF_ALIGN="4"
# Which ascii art to use.
# Default: unset (auto)
# Valid: string
export PF_ASCII="Catppuccin"
# The below environment variables control more
# than just 'pfetch' and can be passed using
# 'HOSTNAME=cool_pc pfetch' to restrict their
# usage solely to 'pfetch'.
# Which user to display.
# export USER="glouie"
# Which hostname to display.
# export HOSTNAME="$HOSTNAME"
# Which editor to display.
# export EDITOR="nvim"
# Which shell to display.
# export SHELL="zsh"
# Which desktop environment to display.
# export XDG_CURRENT_DESKTOP=""