Merge branch 'master' of github.com:dylanaraps/neofetch

This commit is contained in:
Dylan Araps 2016-12-24 11:12:05 +11:00
commit 604bcda012
2 changed files with 8 additions and 0 deletions

View File

@ -120,6 +120,10 @@ Neofetch now has an irc channel at `#neofetch` on Freenode. If you have any ques
- Added support for JuK .**[@mstraube](https://github.com/mstraube)**
- Added support for Bluemindo. **[@mstraube](https://github.com/mstraube)**
**Terminal Font**<br \>
- Added support for Sakura Terminal. **[@mstraube](https://github.com/mstraube)**
**Battery**<br \>
- [MacOS] Fixed issue where battery always appears as charging. **[@jorgegonzalez](https://github.com/jorgegonzalez)**

View File

@ -1598,6 +1598,10 @@ get_term_font() {
"Hyper"*)
term_font="$(awk -F "," '/fontFamily/ {a=$1} END{print a}' "${HOME}/.hyper.js" | awk -F "'" '{a=$2} END{print a}')"
;;
"sakura"*)
term_font="$(awk -F '=' '/^font=/ {a=$2} END{print a}' "${XDG_CONFIG_HOME}/sakura/sakura.conf")"
;;
esac
}