Merge branch 'master' of github.com:dylanaraps/neofetch
This commit is contained in:
commit
604bcda012
|
@ -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)**
|
||||
|
|
4
neofetch
4
neofetch
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Reference in New Issue