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

Commit

Permalink
Fixed rendering issues with URxvt and XFT fonts, thanks Konimex
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Oct 12, 2016
1 parent ee3630a commit 3e9c3d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,7 @@ getcols() {

# Add newlines to the string.
cols="${cols%%'nl'}"
cols="${cols//nl/\\n${padding}}"
cols="${cols//nl/\\n${padding}}"
fi
}

Expand Down Expand Up @@ -2373,7 +2373,7 @@ info() {
[ -z "$2" ] && string="${string/*: }"
# Print the string
printf "%b%s\n" "${padding}${string}${reset}"
printf "%b%s\n" "${padding}${string}${reset}"
# Calculate info height
info_height="$((info_height+=1))"
Expand Down Expand Up @@ -2408,7 +2408,7 @@ prin() {
string="$(trim "$string")"
# Print the info
printf "%b%s\n" "${padding}${string}${reset}"
printf "%b%s\n" "${padding}${string}${reset}"
# Calculate info height
info_height="$((info_height+=1))"
Expand Down

0 comments on commit 3e9c3d6

Please sign in to comment.