Term Font: Add support for deepin-terminal

This commit is contained in:
Michael Straube 2017-01-18 17:40:27 +01:00
parent bfec8bad1b
commit 4ebb0ac153
1 changed files with 4 additions and 0 deletions

View File

@ -1617,6 +1617,10 @@ get_term_font() {
term_font="$(osascript -e 'tell application "Terminal" to font name of window frontmost')"
;;
"deepin-terminal"*)
term_font="$(awk -F '=' '/font=/ {a=$2} /font_size/ {b=$2} END{print a " " b}' "${XDG_CONFIG_HOME}/deepin/deepin-terminal/config.conf")"
;;
"Hyper"*)
term_font="$(awk -F "," '/fontFamily/ {a=$1} END{print a}' "${HOME}/.hyper.js" | awk -F "'" '{a=$2} END{print a}')"
;;