60 lines
1.5 KiB
Bash
Executable file
60 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
# jeremystartm's sysdotfiles "installer"
|
|
|
|
if [ ! -f "/etc/.jstm_sysdotfiles" ]; then
|
|
echo ":: Removing files"
|
|
./uninstall.sh &> /dev/null
|
|
fi
|
|
|
|
# useful function
|
|
function link() {
|
|
if [ -a "/${2}" ]; then
|
|
[[ -n "$VERBOSE_WARNING" ]] && echo ":: Warning: ${2} already exists."
|
|
else
|
|
echo ":: Linking ${2}"
|
|
ln -s "$(pwd)/${1}" "/${2}"
|
|
fi
|
|
}
|
|
|
|
# update/clone repositories
|
|
if [ ! -d "jstmbash" ]; then
|
|
git clone "https://git.staropensource.de/JeremyStarTM/jstmbash.git" jstmbash
|
|
else
|
|
cd jstmbash
|
|
git pull
|
|
cd ..
|
|
fi
|
|
|
|
# create directories
|
|
#mkdir -p "/unused/"
|
|
|
|
# bash configuration
|
|
link "jstmbash" "etc/jstmbash"
|
|
link "lone-files/jstmbash.config.env" "etc/jstmbash.env"
|
|
link "lone-files/bashrc" "etc/bash.bashrc"
|
|
|
|
# locales & stuff
|
|
link "lone-files/locale.gen" "etc/locale.gen"
|
|
link "lone-files/locale.conf" "etc/locale.conf"
|
|
link "lone-files/vconsole.conf" "etc/vconsole.conf"
|
|
link "lone-files/localtime" "etc/localtime"
|
|
|
|
# arch linux related
|
|
link "archlinux/pacman.conf" "etc/pacman.conf"
|
|
link "archlinux/pacman.d" "etc/pacman.d"
|
|
link "archlinux/paru.conf" "etc/paru.conf"
|
|
link "archlinux/makepkg.conf" "etc/makepkg.conf"
|
|
link "archlinux/mkinitcpio.conf" "etc/mkinitcpio.conf"
|
|
|
|
# programs
|
|
link "lone-files/sudo.conf" "etc/sudo.conf"
|
|
|
|
# punktdateien scripts
|
|
link "bin/updatechecker" "usr/local/bin/sysdotfiles-updatechecker"
|
|
link "bin/updater" "usr/local/bin/sysdotfiles-updater"
|
|
|
|
# write install file
|
|
echo "pls don't remove" > "/etc/.jstm_sysdotfiles"
|
|
|
|
# regenerate locales
|
|
locale-gen
|