1
0
Fork 0
mirror of https://github.com/kou029w/dotfiles.git synced 2025-01-18 16:07:59 +00:00
dotfiles/install

11 lines
196 B
Text
Raw Normal View History

2021-08-14 18:01:30 +09:00
#!/bin/bash
set -euo pipefail
2022-04-22 19:47:02 +09:00
cd -- "$(dirname -- "$0")"
2022-06-14 00:34:22 +09:00
. mod.bash
2022-06-15 19:54:15 +09:00
if (($(id -u) == 0)); then
[[ -f /etc/debian_version ]] \
&& install_apt_packages
fi
2022-06-14 00:34:22 +09:00
install_dotfiles
install_addons "$@"