diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c0fb7da..a9a646d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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**
+ +- Added support for Sakura Terminal. **[@mstraube](https://github.com/mstraube)** + **Battery**
- [MacOS] Fixed issue where battery always appears as charging. **[@jorgegonzalez](https://github.com/jorgegonzalez)** diff --git a/neofetch b/neofetch index 239093f1..3ae1e775 100755 --- a/neofetch +++ b/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 }