Merge branch 'master' of https://github.com/dylanaraps/neofetch
This commit is contained in:
commit
3a0c82ebc5
|
@ -1,5 +1,7 @@
|
|||
## Contributors
|
||||
|
||||
- **[@konimex](https://github.com/konimex)**
|
||||
- **[@fornwall](https://github.com/fornwall)**
|
||||
|
||||
## Packages
|
||||
|
||||
|
@ -9,6 +11,8 @@
|
|||
## General
|
||||
|
||||
- [Cursor Position] Fix cursor position in URxvt when using terminal padding.
|
||||
- [Termux] Fix default ascii location. **[@konimex](https://github.com/konimex)**
|
||||
- [Termux] Fix default config location. **[@fornwall](https://github.com/fornwall)**
|
||||
|
||||
|
||||
## Operating System
|
||||
|
|
3
neofetch
3
neofetch
|
@ -2716,6 +2716,9 @@ getdefaultconfig() {
|
|||
elif [ -f "/usr/local/share/neofetch/config" ]; then
|
||||
default_config="/usr/local/share/neofetch/config"
|
||||
|
||||
elif [ -f "/data/data/com.termux/files/usr/share/neofetch/config" ]; then
|
||||
default_config="/data/data/com.termux/files/usr/share/neofetch/config"
|
||||
|
||||
else
|
||||
getscriptdir
|
||||
default_config="${script_dir}/config/config"
|
||||
|
|
Reference in New Issue