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

Fixed typo #191

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
6 changes: 3 additions & 3 deletions pfetch
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ log() {

# Store the values of '$1' and '$3' as we reset the argument list below.
name=$1
use_seperator=$3
use_separator=$3

# Use 'set --' as a means of stripping all leading and trailing
# white-space from the info string. This also normalizes all
Expand All @@ -140,7 +140,7 @@ log() {
esc_p SGR 0

# Print the info name and info data separator, if applicable.
[ "$use_seperator" ] || printf %s "$PF_SEP"
[ "$use_separator" ] || printf %s "$PF_SEP"

# Move the cursor backward the length of the *current* info name and
# then move it forwards the length of the *longest* info name. This
Expand Down Expand Up @@ -1095,7 +1095,7 @@ get_palette() {
palette="$palette$e"
}

# Print the palette with a new-line before and afterwards but no seperator.
# Print the palette with a new-line before and afterwards but no separator.
printf '\n' >&6
log "$palette
" " " " " >&6
Expand Down