Looks like some versions of neofetch doesn't allow ";" as commet prefix,
like wtf. Guess we'll have to use the "#"!
This commit is contained in:
2022-03-23 02:07:41 +01:00
parent a70d58f3f7
commit 425ac598a4

View File

@@ -8,11 +8,11 @@ print_info() {
info "Uptime" uptime
info "Packages" packages
info "Shell" shell
; info "Resolution" resolution
; info "DE" de
; info "WM" wm
; info "WM Theme" wm_theme
; info "Theme" theme
# info "Resolution" resolution
# info "DE" de
# info "WM" wm
# info "WM Theme" wm_theme
# info "Theme" theme
info "Icons" icons
info "Terminal" term
info "Terminal Font" term_font
@@ -20,17 +20,17 @@ print_info() {
info "GPU" gpu
info "Memory" memory
; info "GPU Driver" gpu_driver # Linux/macOS only
; info "CPU Usage" cpu_usage
# info "GPU Driver" gpu_driver # Linux/macOS only
# info "CPU Usage" cpu_usage
info "Disk" disk
; info "Battery" battery
# info "Battery" battery
info "Font" font
; info "Song" song
; [[ "$player" ]] && prin "Music Player" "$player"
# info "Song" song
# [[ "$player" ]] && prin "Music Player" "$player"
info "Local IP" local_ip
; info "Public IP" public_ip
; info "Users" users
; info "Locale" locale # This only works on glibc systems.
# info "Public IP" public_ip
# info "Users" users
# info "Locale" locale # This only works on glibc systems.
info cols
}