implement basic first install
This commit is contained in:
Executable
+22
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
DESOLATE_DIR="$HOME/.desolate"
|
||||
PACKAGES_DIR="$DESOLATE_DIR/packages"
|
||||
SERVICES_DIR="$DESOLATE_DIR/services"
|
||||
DOTFILES_DIR="$DESOLATE_DIR/dotfiles"
|
||||
GROUPS_DIR="$DESOLATE_DIR/groups"
|
||||
|
||||
. "$HOME/.desolate/helpers.sh"
|
||||
|
||||
. "$PACKAGES_DIR/install.sh"
|
||||
. "$SERVICES_DIR/install.sh"
|
||||
. "$DOTFILES_DIR/install.sh"
|
||||
. "$DESOLATE_DIR/assign-groups.sh"
|
||||
|
||||
gum style --foreground 15 "
|
||||
Done!
|
||||
"
|
||||
|
||||
if gum confirm "Reboot system to apply changes?"; then
|
||||
sudo reboot
|
||||
fi
|
||||
Reference in New Issue
Block a user