Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Updated output. #2432

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -3752,7 +3752,7 @@ get_disk() {

# Append '(disk mount point)' to the subtitle.
if [[ "$subtitle" ]]; then
prin "$subtitle${disk_sub:+ ($disk_sub)}" "$disk"
prin "$subtitle" "${disk_sub:+ ${bold}($disk_sub)${reset}} $disk"
else
prin "$disk_sub" "$disk"
fi
Expand Down Expand Up @@ -4882,7 +4882,7 @@ dynamic_prompt() {
# If the ascii art is taller than the info.
((lines=lines>info_height?lines-info_height+1:1))

printf -v nlines "%${lines}s"
printf -v nlines "%${lines}s"\
printf "%b" "${nlines// /\\n}"
}

Expand Down