Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Add Feat Display Editor Setting
Browse files Browse the repository at this point in the history
  • Loading branch information
LanikSJ committed Jul 19, 2023
1 parent 7433316 commit fd7f074
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
66 changes: 65 additions & 1 deletion neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ print_info() {
info "Uptime" uptime
info "Packages" packages
info "Shell" shell
info "Editor" editor
info "Resolution" resolution
info "DE" de
info "WM" wm
Expand Down Expand Up @@ -224,6 +225,32 @@ shell_path="off"
shell_version="on"
# Editor
# Show path to $EDITOR
#
# Default: 'off'
# Values: 'on', 'off'
# Flag: --editor_path
#
# Example:
# on: '/opt/bin/vim'
# off: 'vim'
editor_path="off"
# Show $EDITOR version
#
# Default: 'on'
# Values: 'on', 'off'
# Flag: '--editor_version'
#
# Example:
# on: 'vim 9.0'
# off: 'vim'
editor_version="on"
# CPU
Expand Down Expand Up @@ -1888,6 +1915,38 @@ get_shell() {
shell=${shell/\(*\)}
}

get_editor() {
local editor_full_path="${VISUAL:-$EDITOR}"

# in case neither is set just return
[[ -z "$editor_full_path" ]] && return

case $editor_path in
on) editor="${editor_full_path} " ;;
off) editor="${editor_full_path##*/} " ;;
esac

# in case editor version is not demanded don't bother parsing it
[[ $editor_version != on ]] && return

case ${editor_name:=${editor_full_path##*/}} in
nano|vim)
editor+=$("$editor_full_path" --version 2>&1)
editor="${editor/$'\n'*}"
editor="${editor/$editor_name }"
;;
*)
editor+=$("$editor_full_path" --version 2>&1)
editor="${editor/$'\n'*}"
;;
esac

# remove some common unwanted info from version strings
editor=${editor/, version}
editor=${editor/options*}
editor=${editor/\(*\)}
}

get_de() {
# If function was run, stop here.
((de_run == 1)) && return
Expand Down Expand Up @@ -5182,6 +5241,8 @@ INFO:
--gtk3 on/off Enable/Disable gtk3 theme/font/icons output
--shell_path on/off Enable/Disable showing \$SHELL path
--shell_version on/off Enable/Disable showing \$SHELL version
--editor_path on/off Enable/Disable showing \$EDITOR path
--editor_version on/off Enable/Disable showing \$EDITOR version
--disk_show value Which disks to display.
Possible values: '/', '/dev/sdXX', '/path/to/mount point'
Expand Down Expand Up @@ -5398,6 +5459,8 @@ get_args() {
"--gtk3") gtk3="$2" ;;
"--shell_path") shell_path="$2" ;;
"--shell_version") shell_version="$2" ;;
"--editor_path") editor_path="$2" ;;
"--editor_version") editor_version="$2" ;;
"--ip_host") public_ip_host="$2" ;;
"--ip_timeout") public_ip_timeout="$2" ;;
"--ip_interface")
Expand Down Expand Up @@ -8566,7 +8629,8 @@ EOF
"mac"* | "Darwin")
set_colors 2 3 1 1 5 4
read -rd '' ascii_data <<'EOF'
${c1} c.'
${c1}
c.'
,xNMM.
.OMMMMo
lMM"
Expand Down
6 changes: 6 additions & 0 deletions neofetch.1
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,12 @@ Enable/Disable showing $SHELL path
\fB\-\-shell_version\fR on/off
Enable/Disable showing $SHELL version
.TP
\fB\-\-editor_path\fR on/off
Enable/Disable showing $VISUAL or $EDITOR path
.TP
\fB\-\-editor_version\fR on/off
Enable/Disable showing $VISUAL or $EDITOR version
.TP
\fB\-\-disk_show\fR value
Which disks to display.
Possible values: '/', '/dev/sdXX', '/path/to/mount point'
Expand Down

0 comments on commit fd7f074

Please sign in to comment.