Enable tasks and notes in work environment

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-06-17 21:29:40 +02:00
parent 5f170c2db6
commit 0fb408fc24
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
6 changed files with 25 additions and 27 deletions

29
install
View file

@ -110,6 +110,7 @@ ADD_GROUPS=(
SYSTEMD_SERVICES=(
"acpid"
"cronie"
"docker"
"NetworkManager"
"org.cups.cupsd"
"suspend"
@ -243,22 +244,20 @@ else
done
fi
if [ "${IS_WORK}" = "0" ]; then
print_section "Setup notes directory"
if [ ! -d "${HOME}/notes" ]; then
git clone gl:notes "${HOME}/notes"
print_log "Created notes directory"
else
print_log "Notes directory already exists"
fi
print_section "Setup notes directory"
if [ ! -d "${HOME}/notes" ]; then
git clone gl:notes "${HOME}/notes"
print_log "Created notes directory"
else
print_log "Notes directory already exists"
fi
print_section "Setup tasks directory"
if [ ! -d "${HOME}/tasks" ]; then
git clone gl:tasks "${HOME}/tasks"
print_log "Created tasks directory"
else
print_log "Tasks directory allready exists"
fi
print_section "Setup tasks directory"
if [ ! -d "${HOME}/tasks" ]; then
git clone gl:tasks "${HOME}/tasks"
print_log "Created tasks directory"
else
print_log "Tasks directory allready exists"
fi