Commit e2d1cb27 authored by Dominik Ritter's avatar Dominik Ritter

Fix comparison

parent eec7f08e
......@@ -1666,7 +1666,7 @@ get_term_font() {
# selected one, but then decided to uncheck the "use different font" mark
# again.
local nonAsciiFont=$(/usr/libexec/PlistBuddy -c "Print :New\ Bookmarks:${idx}:Non\ Ascii\ Font:" ~/Library/Preferences/com.googlecode.iterm2.plist)
if [[ "$term_font" -ne "$nonAsciiFont" ]]; then
if [[ "$term_font" != "$nonAsciiFont" ]]; then
term_font="$term_font (normal) / $nonAsciiFont (non-ascii)"
fi
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment