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:
Sivert V. Sæther 2022-03-23 02:07:41 +01:00
parent a70d58f3f7
commit 425ac598a4

View File

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