shellnotes/set_defaults.sh

96 lines
2.5 KiB
Bash
Raw Permalink Normal View History

2021-04-03 10:58:48 +02:00
:<<'info'
shellnotes - set_defaults.sh
(C) Dimitris Marakomihelakis
Released under the "All rights reserved" category. See the RIGHTS.txt file
in /docs/github/ for its full text.
info
. ./~/.shellnotes/def/defaults.sh
clear
echo "Shellnotes configuration tool"
echo "-----------------------------"
echo "1. Select default editor for regular notes (newnote)"
echo "2. Select default editor for quick notes (quicknote)"
echo "3. Select default path for saving your notes (Notes folder)"
echo "4. View defaults (editors, folder, source)"
echo
echo -n "[1,2,3,4]: " && read input
2021-07-05 10:50:01 +02:00
input1="$(cat ~/.shellnotes/util/shellnotes/sd/sd-input1.txt)"
input2="$(cat ~/.shellnotes/util/shellnotes/sd/sd-input2.txt)"
input3="$(cat ~/.shellnotes/util/shellnotes/sd/sd-input3.txt)"
2021-04-03 10:58:48 +02:00
if [[ "$input" == "1" ]]; then
echo -n "Editor name without full path: " && read name
if [ -e "$(which $name)" ]; then
if [[ "$(which $name)" == "$input1" ]]; then
echo "This is already the default notes editor."
else
2021-07-05 10:50:01 +02:00
echo "$(which $name)" > ~/.shellnotes/util/shellnotes/shellnotes/sd/sd-input1.txt
2021-04-03 10:58:48 +02:00
echo "Default notes editor updated."
echo "Please restart your terminal."
fi
else
echo "This program name is invalid or not a text editor."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./sdfailed
2021-04-03 10:58:48 +02:00
fi
elif [[ "$input" == "2" ]]; then
if [ -e "$(which $name)" ]; then
if [[ "$(which $name)" == "$input2" ]]; then
echo "This is already the default quick notes editor."
else
2021-07-05 10:50:01 +02:00
echo "$(which $name)" > ~/.shellnotes/util/shellnotes/sd/sd-input2.txt
2021-04-03 10:58:48 +02:00
echo "Default quick notes editor updated."
echo "Please restart your terminal."
fi
echo "This program name is invalid or not a text editor."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./sdfailed
2021-04-03 10:58:48 +02:00
fi
elif [[ "$input" == "3" ]]; then
echo -n "Select new note path with absolute path: " && read name
name=$(eval echo $name)
if [ -d $name ]; then
if [[ "$name" == "$input3" ]]; then
echo "This is already the default notes folder."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./sdfailed
2021-04-03 10:58:48 +02:00
else
mv $DEFAULT_PATH/* $name
2021-07-05 10:50:01 +02:00
echo "$name" > ~/.shellnotes/util/shellnotes/sd/sd-input3.txt
2021-04-03 10:58:48 +02:00
echo "Default notes folder updated."
echo "Please restart your terminal."
fi
else
echo "This directory does not exist."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./sdfailed
2021-04-03 10:58:48 +02:00
fi
elif [[ "$input" == "4" ]]; then
echo "Default notes editor: $input1"
echo "Default quick notes editor: $input2"
echo "Default notes folder: $input3"
echo "Default shellnotes source files: ~/.shellnotes"
else
echo "Invalid input."
fi
2021-04-19 21:20:01 +02:00
cd $DIR