-
Notifications
You must be signed in to change notification settings - Fork 3
/
neofetch.conf
executable file
·95 lines (70 loc) · 1.32 KB
/
neofetch.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
#!/usr/bin/env bash
#
# Neofetch config file
# https://github.com/dylanaraps/neofetch
# Speed up script by not using unicode
export LC_ALL=C
export LANG=C
print_info() {
info title
info underline
info "OS" distro
info "WM" wm
info "Term" term
info "Font" font
info "Theme" theme
info "Icons" icons
info "Terminal Font" term_font
info line_break
info cols
info line_break
info "CPU" cpu
info "GPU" gpu
info "Memory" memory
}
# Distro
distro_shorthand="tiny"
os_arch="off"
# Memory
memory_percent="off"
memory_unit="gib"
# Shell
shell_path="off"
shell_version="off"
# CPU
speed_type="bios"
cpu_shorthand="tiny"
cpu_speed="off"
cpu_cores="logical"
cpu_temp="off"
# GPU
gpu_brand="off"
refresh_rate="off"
# Gtk Theme / Icons / Font
gtk_shorthand="on"
gtk2="on"
gtk3="on"
# Text Colors
#colors=(4 6 1 8 8 6)
colors=(distro)
bold="on"
underline_enabled="on"
underline_char="-"
# Color Blocks
block_range=(0 7)
color_blocks="on"
block_width=3
block_height=1
# Ascii Options
ascii="distro"
ascii_distro="auto"
#ascii_colors=(8 6 1 8 8 6)
#ascii_colors=(distro)
ascii_logo_size="normal"
ascii_bold="on"
# Scrot Options
scrot="off"
scrot_cmd="auto"
scrot_dir="$HOME/Pictures/Screenshots"
scrot_name="neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png"
image_host="teknik"