updated re: archival of inks-scripts

This commit is contained in:
Solomon Laing 2023-02-11 15:27:39 +10:30
parent b2f9731e3b
commit 320f2c3f50
3 changed files with 37 additions and 55 deletions

7
arch/_old/README.md Normal file
View File

@ -0,0 +1,7 @@
# OLD
The graveyard for old parts of this project.
Entries:
* Sat Feb 11 03:26:07 PM ACDT 2023, my scripts are now just in my config in
`$HOME/.local/bin`.

View File

@ -79,15 +79,6 @@ function install_misc {
fi
}
# install my scripts
function install_scripts {
cd $working_dir
./install-scripts
if [ $? -eq 1 ]; then
exit 1
fi
}
function install_dmenu {
cd $working_dir
./install-dmenu-inkletblot
@ -115,20 +106,19 @@ function configure_system {
}
function help {
echo "Usage is:"
echo " setup <option> -- to start system setup from option"
echo " setup <option> only -- to only setup the specified option"
echo "Options (in order of execution):"
echo " yay : Install yay AUR helper"
echo " deps : Install the dependencies for my scripts and window manager"
echo " defaults : Install my chosen default programs"
echo " misc : Install my collection of misc - nice to have - programs"
echo " scripts : Install my scirpts"
echo " dmenu : Install my customised version of dmenu"
echo " dotfiles : Install my dotfiles to the system"
echo " configure : configure certain system files - BETA"
echo ""
echo "Note: it is expected that the initial run of this script lets each stage complete sucessfully."
echo "Usage is:"
echo " setup <option> -- to start system setup from option"
echo " setup <option> only -- to only setup the specified option"
echo "Options (in order of execution):"
echo " yay : Install yay AUR helper"
echo " deps : Install the dependencies for my scripts and window manager"
echo " defaults : Install my chosen default programs"
echo " misc : Install my collection of misc - nice to have - programs"
echo " dmenu : Install my customised version of dmenu"
echo " dotfiles : Install my dotfiles to the system"
echo " configure : configure certain system files - BETA"
echo ""
echo "Note: it is expected that the initial run of this script lets each stage complete sucessfully."
}
if [ "$1" = "help" ]; then
@ -146,7 +136,6 @@ case $1 in
install_dependencies
install_defaults
install_misc
install_scripts
install_dmenu
install_config
configure_system
@ -159,7 +148,6 @@ case $1 in
install_dependencies
install_defaults
install_misc
install_scripts
install_dmenu
install_config
configure_system
@ -173,7 +161,6 @@ case $1 in
install_dependencies
install_defaults
install_misc
install_scripts
install_dmenu
install_config
configure_system
@ -186,7 +173,6 @@ case $1 in
else
install_defaults
install_misc
install_scripts
install_dmenu
install_config
configure_system
@ -198,17 +184,6 @@ case $1 in
install_misc
else
install_misc
install_scripts
install_dmenu
install_config
configure_system
fi
;;
scripts)
if [ "$2" = "only" ]; then
install_scripts
else
install_scripts
install_dmenu
install_config
configure_system