Commit 0a2c9a5a authored by Dylan Araps's avatar Dylan Araps

Misc: Don't uppercase Terminal and WM output

parent ec0ed23d
...@@ -543,11 +543,6 @@ getwm() { ...@@ -543,11 +543,6 @@ getwm() {
;; ;;
esac esac
fi fi
# Don't uppercase i3
[ "$version" -ge 4 ] && \
[ "$wm" != "i3" ] && \
wm="${wm^}"
} }
# }}} # }}}
...@@ -1470,8 +1465,6 @@ getterm() { ...@@ -1470,8 +1465,6 @@ getterm() {
"gnome-terminal-") term="gnome-terminal" ;; "gnome-terminal-") term="gnome-terminal" ;;
*) term="${name##*/}" ;; *) term="${name##*/}" ;;
esac esac
[ "$version" -ge 4 ] && term="${term^}"
} }
# }}} # }}}
......
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