This commit is contained in:
Dylan Araps 2021-09-03 04:29:38 +03:00
parent 753119227a
commit 0401f4d2cb
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C

4
pfetch
View File

@ -1036,7 +1036,9 @@ get_shell() {
get_editor() { get_editor() {
# Display the value of '$VISUAL', if it's empty, display the # Display the value of '$VISUAL', if it's empty, display the
# value of '$EDITOR'. # value of '$EDITOR'.
log editor "${VISUAL:-$EDITOR}" >&6 editor=${VISUAL:-"$EDITOR"}
log editor "${editor##*/}" >&6
} }
get_palette() { get_palette() {