diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2020-03-12 22:01:30 +0200 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2020-03-12 22:01:30 +0200 |
| commit | 3a33033120cfd8a30af6b1d753a6da935ee75b3f (patch) | |
| tree | 62c3cbcc246dcf10e3221dc96fec994503d35211 | |
| parent | 44aaae774fe99172fe28510c37542d70ea59d952 (diff) | |
| download | pfetch-3a33033120cfd8a30af6b1d753a6da935ee75b3f.tar.gz | |
pfetch: Fix potential align issue
| -rwxr-xr-x | pfetch | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ log() { # Move the cursor backward the length of the *current* info name and # then move it forwards the length of the *longest* info name. This # aligns each info data line. - printf '[%sD[%sC' "${#name}" "${PF_ALIGN-$info_length}" + printf '[%sD[%sC' "${#name}" "${PF_ALIGN:-$info_length}" # Print the info data, color it and strip all leading whitespace # from the string. |
