Organisation

This commit is contained in:
2020-02-20 23:09:56 +00:00
parent 49d3b0f064
commit 997af377de
10 changed files with 94 additions and 33 deletions

View File

@@ -1 +1,13 @@
#!/bin/bash
CYAN='\033[0;36m'
NC='\033[0m'
echo "${CYAN}andrejusk/dotfiles${NC}"
if [[ $EUID -ne 0 ]]; then
echo "sudo !!"
exit 1
fi
install_dir="$0/install"
state_dir="$install_dir/.state"
for script in $install_dir/*.sh; do sh $script; done