mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-03-26 13:55:17 +00:00
7 lines
147 B
Bash
Executable file
7 lines
147 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
cd -- "$(dirname -- "$0")"
|
|
. mod.bash
|
|
(($(id -u) == 0)) && install_apt_packages
|
|
install_dotfiles
|
|
install_addons "$@"
|