1
0
Fork 0
mirror of https://github.com/kou029w/dotfiles.git synced 2025-01-18 08:05:01 +00:00
dotfiles/mod.bash

37 lines
789 B
Bash

function install_dotfiles() {
local home
local dotfile
home=$(eval "echo ~${SUDO_USER:-}")
for dotfile in .*; do
[[ $dotfile =~ ^(\.\.?|\.git)$ ]] && continue
dotfile=$(realpath "$dotfile")
(
cd -- "$home"
ln -svf "$dotfile" .
)
done
}
function install_apt_packages() {
local packages
local apt_sources_dir
. packages.bash
eval "$(apt-config shell apt_sources_dir 'Dir::Etc::sourceparts/d')"
rsync -rv etc/apt/keyrings/ /usr/share/keyrings/
rsync -rv etc/apt/sources.list.d/ "$apt_sources_dir"
[[ -d etc/default ]] \
&& rsync -rv etc/default/ /etc/default/
apt update
apt install -y "${packages[@]}"
}
function install_addons() {
local addon
for addon in "$@"; do
(
cd -- "$addon"
./install
)
done
}