Merge branch 'master' of github.com:dylanaraps/neofetch
This commit is contained in:
commit
604bcda012
2 changed files with 8 additions and 0 deletions
|
@ -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 JuK .**[@mstraube](https://github.com/mstraube)**
|
||||||
- Added support for Bluemindo. **[@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 \>
|
**Battery**<br \>
|
||||||
|
|
||||||
- [MacOS] Fixed issue where battery always appears as charging. **[@jorgegonzalez](https://github.com/jorgegonzalez)**
|
- [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"*)
|
"Hyper"*)
|
||||||
term_font="$(awk -F "," '/fontFamily/ {a=$1} END{print a}' "${HOME}/.hyper.js" | awk -F "'" '{a=$2} END{print a}')"
|
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
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue