-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.conf
158 lines (126 loc) · 2.52 KB
/
config.conf
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
# See this wiki page for more info:
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
print_info() {
# Title and System Information
info title
info underline
prin
info "User_____" users
info "OS_______" distro
info "Kernel___" kernel
info underline
# Uptime and Package Info
prin
info "Uptime___" uptime
info "Packages_" packages
info "Local IP_" local_ip
info underline
# Shell and Desktop Environment
prin
info "Shell____" shell
info "Terminal_" term
info "DE_______" de
info "WM_______" wm
info "Icons____" icons
info "Art______" source
info underline
# Hardware Information
prin
info "CPU______" cpu
info "GPU______" gpu
info "Memory___" memory
info "" disk
info underline
# Fortune Message
prin
fortune_output=$(fortune -s | fold -s -w 52)
while IFS= read -r line; do
prin "\033[36m$line\033[0m"
done <<< "$fortune_output"
info underline
# End
info cols
}
# Global Settings
# Title
title_fqdn="off"
# Kernel
kernel_shorthand="on"
# Distro
distro_shorthand="on"
os_arch="off"
# Uptime
uptime_shorthand="on"
# Memory
memory_percent="on"
memory_unit="mib"
# Packages
package_managers="tiny"
# Shell
shell_path="off"
shell_version="on"
# CPU
speed_type="scaling_max_freq"
speed_shorthand="on"
cpu_brand="off"
cpu_speed="on"
cpu_cores="off"
cpu_temp="off"
# GPU
gpu_brand="off"
gpu_type="all"
# Resolution
refresh_rate="off"
# GTK
gtk_shorthand="on"
gtk2="off"
gtk3="on"
# IP Address
public_ip_host="http://ident.me"
public_ip_timeout=2
# Desktop Environment
de_version="on"
# Disk
disk_show=('/' '/dev/sdb1')
disk_subtitle="name"
disk_percent="on"
# Song
music_player="auto"
song_format="%title%"
song_shorthand="on"
# 'mpc' arguments (specify a host, password etc).
mpc_args=()
# Text
colors=(2 13 12 7 5 3)
bold="off"
underline_enabled="on"
underline_char="=============="
separator="⠀⢾⡷"
# Color Blocks
block_range=(0 15)
color_blocks="off"
block_width=3
block_height=1
# Color Alignment
col_offset="auto"
# Progress Bars
bar_char_elapsed="-"
bar_char_total="="
# Toggle Bar border
bar_border="on"
# Progress bar length in spaces
bar_length=15
# Progress bar colors
bar_color_elapsed="distro"
bar_color_total="distro"
# Info display
cpu_display="off"
memory_display="off"
battery_display="off"
disk_display="off"
# ascii backend.
image_backend="ascii"
image_source="$(ls /usr/ascii/*.txt | shuf -n 1)"
source=$(basename "${image_source%.*}")
# Misc Options
stdout="off"