Noah Vogt 4 жил өмнө
parent
commit
f270ababc5
1 өөрчлөгдсөн 17 нэмэгдсэн , 0 устгасан
  1. 17 0
      testing/norisa.sh

+ 17 - 0
testing/norisa.sh

@@ -0,0 +1,17 @@
+#!/bin/sh
+
+pacman -Sy --noconfirm git vim
+
+# setting up build environment
+mkdir ~/.build && cd ~/.build
+
+# make new user
+sed -i 's/# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/g' /etc/sudoers
+read -p "What is your desired username? " username
+useradd -m -g users -G wheel $username
+passwd $username
+
+# install aur helper
+# git clone https://aur.archlinux.org/pacaur.git && cd pacaur && makepkg --allsource -si && cd
+
+