obosdi-pkg/config/bash/editor
2018-09-16 03:36:14 +02:00

34 lines
642 B
Bash

#!/bin/bash
. ./lib
options=()
if [ -f /usr/bin/nano ]; then
options+=("nano" "")
fi
if [ -f /usr/bin/vim ]; then
options+=("vim" "")
fi
if [ -f /usr/bin/vi ]; then
options+=("vi" "")
fi
if [ -f /usr/bin/edit ]; then
options+=("edit" "")
fi
options+=("unset" "")
editor=$(whiptail --backtitle "$apptitle" --title "Default global editor :" --menu "" --cancel-button "Back" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
if [ "$editor" = "unset" ]; then
rm /etc/profile.d/editor.sh
else
echo "export EDITOR=$editor" > /etc/profile.d/editor.sh
chmod 755 /etc/profile.d/editor.sh
fi
exit 0