diff options
| author | Chris Titus <[email protected]> | 2021-10-26 19:35:18 -0500 |
|---|---|---|
| committer | Chris Titus <[email protected]> | 2021-10-26 19:35:18 -0500 |
| commit | 709b93ccec9102cd5dffb167669913af04185700 (patch) | |
| tree | c4ade55534bd298ba7d8b182b9413239f97c6cef /3-post-setup.sh | |
| parent | 9724ae3706aa2801c3e776e2aa1344d622da0e23 (diff) | |
| download | ArchTitus-709b93ccec9102cd5dffb167669913af04185700.tar.xz ArchTitus-709b93ccec9102cd5dffb167669913af04185700.zip | |
Update 3-post-setup.sh
sudo not needed
Diffstat (limited to '3-post-setup.sh')
| -rwxr-xr-x | 3-post-setup.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/3-post-setup.sh b/3-post-setup.sh index 12c73f4..1b63457 100755 --- a/3-post-setup.sh +++ b/3-post-setup.sh @@ -14,11 +14,11 @@ echo -e "\nFINAL SETUP AND CONFIGURATION" echo -e "\nEnabling Login Display Manager" -sudo systemctl enable sddm.service +systemctl enable sddm.service echo -e "\nSetup SDDM Theme" -sudo cat <<EOF > /etc/sddm.conf +cat <<EOF > /etc/sddm.conf [Theme] Current=Nordic EOF @@ -28,12 +28,12 @@ EOF echo -e "\nEnabling essential services" systemctl enable cups.service -sudo ntpd -qg -sudo systemctl enable ntpd.service -sudo systemctl disable dhcpcd.service -sudo systemctl stop dhcpcd.service -sudo systemctl enable NetworkManager.service -sudo systemctl enable bluetooth +ntpd -qg +systemctl enable ntpd.service +systemctl disable dhcpcd.service +systemctl stop dhcpcd.service +systemctl enable NetworkManager.service +systemctl enable bluetooth echo " ############################################################################### # Cleaning |
