From 32b2336f71774d2d02938ec630a5d17dfa3efb92 Mon Sep 17 00:00:00 2001 From: Hadeed Ahmad Date: Sun, 17 Nov 2024 14:31:26 +0500 Subject: [PATCH] Fix stuff --- README.md | 6 +++--- user-commands-after.bash => user_commands.bash | 7 ++++++- user_pkglist.txt | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) rename user-commands-after.bash => user_commands.bash (77%) diff --git a/README.md b/README.md index 0aecd28..c2a87cd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Run these commands before installation: ```sh - curl -fsSL -o ~/user_pkglist.txt https://git.hadeedahmad.com/hadeed/dots/raw/branch/main/user_pkglist.txt - curl -fsSL -o ~/user-commands-after.bash https://git.hadeedahmad.com/hadeed/dots/raw/branch/main/user-commands-after.bash - chmod +x ~/user-commands-after.bash + wget -qo ~/user_pkglist https://git.hadeedahmad.com/hadeed/dots/raw/branch/main/user_pkglist.txt + wget -qo ~/user_commands.bash https://git.hadeedahmad.com/hadeed/dots/raw/branch/main/user_commands.bash + chmod +x ~/user_commands.bash ``` diff --git a/user-commands-after.bash b/user_commands.bash similarity index 77% rename from user-commands-after.bash rename to user_commands.bash index 2f727a7..3401367 100644 --- a/user-commands-after.bash +++ b/user_commands.bash @@ -5,7 +5,7 @@ USER_HOME=$(getent passwd "$USER" | cut -d: -f6) echo "%wheel ALL=(ALL:ALL) NOPASSWD: ALL" | EDITOR='tee -a' visudo -systemctl enable --now docker.service +systemctl enable docker.service usermod -aG docker "$USER" usermod --shell /usr/bin/zsh "$USER" @@ -16,15 +16,20 @@ su - "$USER" <