2 Commits
0.5.0 ... 0.5.2

View File

@@ -6,9 +6,10 @@ CURRENT_FANCYFY=""
DELETE=false DELETE=false
MOVE=false MOVE=false
PRESENT=false PRESENT=false
BASHRC="~/.bashrc"
_bashrc_present() { _bashrc_present() {
if [ ! -z "$(grep "#REF:bashrc_overrides:REF" ~/.bashrc)" ]; then if [ ! -z "$(grep "#REF:bashrc_overrides:REF" ${BASHRC})" ]; then
echo true echo true
exit exit
fi fi
@@ -18,7 +19,7 @@ _bashrc_present() {
_arguments() { _arguments() {
if [ "$(_bashrc_present)" = true ]; then if [ "$(_bashrc_present)" = true ]; then
PRESENT=true PRESENT=true
CURRENT_FANCYFY="$(grep TERMINAL_FANCYFY /home/bryanpedini/.bashrc | sed 's/.*=//')" CURRENT_FANCYFY="$(grep TERMINAL_FANCYFY ${BASHRC} | sed 's/.*=//')"
fi fi
for PARM in "$@"; do for PARM in "$@"; do
if [ "${PARM}" = "--server" ]; then if [ "${PARM}" = "--server" ]; then
@@ -43,7 +44,7 @@ _help() {
echo " --force" echo " --force"
echo " Force the reinstallation of the files" echo " Force the reinstallation of the files"
echo " --delete" echo " --delete"
echo " Delete the reference in ~/.bashrc" echo " Delete the reference in ${BASHRC}"
echo " --move" echo " --move"
echo " Create a new reference if the location of this folder has been changed" echo " Create a new reference if the location of this folder has been changed"
echo " --server" echo " --server"
@@ -52,18 +53,18 @@ _help() {
} }
_delete() { _delete() {
sed -i '/REF:bashrc_overrides:REF/{N;N;d}' ~/.bashrc sed -i '/REF:bashrc_overrides:REF/{N;N;d}' "${BASHRC}"
} }
_bashrc_ref() { _bashrc_ref() {
echo "#REF:bashrc_overrides:REF" >> ~/.bashrc echo "#REF:bashrc_overrides:REF" >> "${BASHRC}"
echo "export TERMINAL_FANCYFY=${1}" >> ~/.bashrc echo "export TERMINAL_FANCYFY=${1}" >> "${BASHRC}"
echo ". ${THIS}/bashrc_overrides/_all" >> ~/.bashrc echo ". ${THIS}/bashrc_overrides/_all" >> "${BASHRC}"
} }
_move() { _move() {
_delete _delete
_bashrc_ref _bashrc_ref "${FANCYFY}"
} }
_main() { _main() {
@@ -73,12 +74,20 @@ _main() {
_delete _delete
echo "removed custom configs" echo "removed custom configs"
elif [ "${MOVE}" = true ]; then elif [ "${MOVE}" = true ]; then
if [ "${PRESENT}" = false ]; then
_bashrc_ref "${FANCYFY}"
echo "unable to move to current directory"
echo "bash overrides not previously present"
echo "adding bash overrides..."
echo
else
_move _move
echo "moved custom config directory to ${THIS}" echo "moved custom config directory to ${THIS}"
echo echo
fi
elif [ "${PRESENT}" = true ]; then elif [ "${PRESENT}" = true ]; then
if [ "${CURRENT_FANCYFY}" != "${FANCYFY}" ]; then if [ "${CURRENT_FANCYFY}" != "${FANCYFY}" ]; then
sed -i "s/TERMINAL_FANCYFY=${CURRENT_FANCYFY}/TERMINAL_FANCYFY=${FANCYFY}/" ~/.bashrc sed -i "s/TERMINAL_FANCYFY=${CURRENT_FANCYFY}/TERMINAL_FANCYFY=${FANCYFY}/" "${BASHRC}"
echo "customized fancyfying" echo "customized fancyfying"
echo echo
else else