Added hardcoded DE detection for OS X
This commit is contained in:
parent
a506eb44a3
commit
ea2482c7d7
2 changed files with 7 additions and 2 deletions
3
1.6.md
3
1.6.md
|
@ -85,6 +85,9 @@ This is much faster than the default method.
|
|||
**Theme**<br \>
|
||||
- Use `$GTK2_RC_FILES` if the envar is set. **[@onespaceman](https://github.com/onespaceman)**
|
||||
|
||||
**Desktop Environment**<br \>
|
||||
- Added OS X detection.
|
||||
|
||||
**Song**<br \>
|
||||
- [ MPD ] Fixed function when mpd is running on another PC and not your own.
|
||||
- Song now displays `Not Playing` instead of `Unknown` when no music player is found.
|
||||
|
|
6
neofetch
6
neofetch
|
@ -769,9 +769,11 @@ getshell () {
|
|||
# }}}
|
||||
|
||||
# Desktop Environment {{{
|
||||
|
||||
getde () {
|
||||
de="${XDG_CURRENT_DESKTOP/i3}"
|
||||
case "$os" in
|
||||
"Mac OS X") de="Aqua" ;;
|
||||
*) de="${XDG_CURRENT_DESKTOP/i3}" ;;
|
||||
esac
|
||||
}
|
||||
|
||||
# }}}
|
||||
|
|
Loading…
Reference in a new issue