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
205 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-04-25 20:36:15 +09:00
(($(id -u) == 0)) \
2022-06-14 00:34:22 +09:00
&& [[ -f /etc/debian_version ]] \
2022-04-25 20:36:15 +09:00
&& install_apt_packages
2022-10-26 23:52:56 +09:00
install_gitconfig
2022-06-14 00:34:22 +09:00
install_dotfiles
install_addons "$@"