mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-01-18 16:07:59 +00:00
8 lines
153 B
Text
8 lines
153 B
Text
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
cd -- "$(dirname -- "$0")"
|
||
|
. ../mod.bash
|
||
|
(($(id -u) == 0)) \
|
||
|
&& [[ -f /etc/debian_version ]] \
|
||
|
&& install_apt_packages
|