Add support for nushell (#1878)

* Add support for nushell

* Update neofetch

Co-authored-by: Tyler J Russell <xtylerjrx@gmail.com>

Co-authored-by: Tyler J Russell <xtylerjrx@gmail.com>
This commit is contained in:
Nathan Thomas 2021-11-09 19:41:10 -08:00 committed by GitHub
parent 3eb7e13e27
commit 0d08c130ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -1745,6 +1745,12 @@ get_shell() {
shell=${shell/Copyright*}
;;
nu)
shell+=$("$SHELL" -c "version | get version")
shell=${shell/ $shell_name}
;;
*)
shell+=$("$SHELL" --version 2>&1)
shell=${shell/ $shell_name}