Commit c45436f0 authored by Dylan Araps's avatar Dylan Araps Committed by GitHub

Merge pull request #363 from dylanaraps/uppercase

Uppercase first letter of term outputs.
parents 74a125e2 5e167e4c
......@@ -1559,6 +1559,8 @@ getterm() {
"gnome-terminal-") term="gnome-terminal" ;;
*) term="$name" ;;
esac
[ "$version" -ge 4 ] && term="${term^}"
}
# }}}
......@@ -1607,6 +1609,8 @@ gettermfont() {
termfont="${termfont/:*}"
;;
esac
[ "$version" -ge 4 ] && termfont="${termfont^}"
}
# }}}
......
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