From b5fd9cabe6336f0e0ec59b396e561d497ada0d34 Mon Sep 17 00:00:00 2001 From: Flemming <82654322+Clepnicx@users.noreply.github.com> Date: Thu, 27 Jan 2022 14:17:39 +0100 Subject: [PATCH 01/10] added systemctl enable cronie.services --- 3-post-setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/3-post-setup.sh b/3-post-setup.sh index d9a2641..6a9ec2d 100755 --- a/3-post-setup.sh +++ b/3-post-setup.sh @@ -64,6 +64,7 @@ echo -ne " ------------------------------------------------------------------------- " systemctl enable cups.service +systemctl enable cronie.service ntpd -qg systemctl enable ntpd.service systemctl disable dhcpcd.service From 140ae629ecfe32d6755ab8e23790290fa315fcd6 Mon Sep 17 00:00:00 2001 From: David Giwojno Date: Wed, 2 Feb 2022 15:54:59 +0100 Subject: [PATCH 02/10] add support for newest sudo version --- 1-setup.sh | 1 + 3-post-setup.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/1-setup.sh b/1-setup.sh index 90818ac..6cd6896 100755 --- a/1-setup.sh +++ b/1-setup.sh @@ -58,6 +58,7 @@ localectl --no-ask-password set-keymap ${KEYMAP} # Add sudo no password rights sed -i 's/^# %wheel ALL=(ALL) NOPASSWD: ALL/%wheel ALL=(ALL) NOPASSWD: ALL/' /etc/sudoers +sed -i 's/^# %wheel ALL=(ALL:ALL) NOPASSWD: ALL/%wheel ALL=(ALL:ALL) NOPASSWD: ALL/' /etc/sudoers #Add parallel downloading sed -i 's/^#ParallelDownloads/ParallelDownloads/' /etc/pacman.conf diff --git a/3-post-setup.sh b/3-post-setup.sh index d9a2641..9a8a28f 100755 --- a/3-post-setup.sh +++ b/3-post-setup.sh @@ -77,8 +77,10 @@ echo -ne " " # Remove no password sudo rights sed -i 's/^%wheel ALL=(ALL) NOPASSWD: ALL/# %wheel ALL=(ALL) NOPASSWD: ALL/' /etc/sudoers +sed -i 's/^%wheel ALL=(ALL:ALL) NOPASSWD: ALL/# %wheel ALL=(ALL:ALL) NOPASSWD: ALL/' /etc/sudoers # Add sudo rights sed -i 's/^# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/' /etc/sudoers +sed -i 's/^# %wheel ALL=(ALL:ALL) ALL/%wheel ALL=(ALL:ALL) ALL/' /etc/sudoers rm -r /root/ArchTitus rm -r /home/$USERNAME/ArchTitus From 65d29461bd27e8d2dd93a90966510b4ba77eca7b Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Sat, 12 Feb 2022 11:44:09 +0800 Subject: [PATCH 03/10] Update archtitus.sh --- archtitus.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/archtitus.sh b/archtitus.sh index 821bb39..eb8fd5b 100755 --- a/archtitus.sh +++ b/archtitus.sh @@ -16,6 +16,10 @@ echo -ne " ------------------------------------------------------------------------- Scripts are in directory named ArchTitus " +#!/bin/bash +if [ -f /.dockerenv ]; then + echo "docker container found, i can't install" + break bash startup.sh source $SCRIPT_DIR/setup.conf bash 0-preinstall.sh From 4874b4c612231c80518f01dffb7dc4abe34db9fa Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Sat, 12 Feb 2022 11:47:00 +0800 Subject: [PATCH 04/10] Update archtitus.sh --- archtitus.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/archtitus.sh b/archtitus.sh index eb8fd5b..a4a7c7e 100755 --- a/archtitus.sh +++ b/archtitus.sh @@ -20,6 +20,7 @@ echo -ne " if [ -f /.dockerenv ]; then echo "docker container found, i can't install" break +else bash startup.sh source $SCRIPT_DIR/setup.conf bash 0-preinstall.sh From d8d9806f2e202bdc92017f809db3de128ecf7d79 Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Sat, 12 Feb 2022 17:34:22 +0800 Subject: [PATCH 05/10] Update archtitus.sh --- archtitus.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/archtitus.sh b/archtitus.sh index a4a7c7e..ede4a98 100755 --- a/archtitus.sh +++ b/archtitus.sh @@ -27,7 +27,6 @@ else arch-chroot /mnt /root/ArchTitus/1-setup.sh arch-chroot /mnt /usr/bin/runuser -u $USERNAME -- /home/$USERNAME/ArchTitus/2-user.sh arch-chroot /mnt /root/ArchTitus/3-post-setup.sh - echo -ne " ------------------------------------------------------------------------- █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗ From 85081d5d2b1cb319a138206ff601389b4365c222 Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Sat, 12 Feb 2022 17:40:47 +0800 Subject: [PATCH 06/10] Update archtitus.sh --- archtitus.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/archtitus.sh b/archtitus.sh index ede4a98..3e70d71 100755 --- a/archtitus.sh +++ b/archtitus.sh @@ -17,7 +17,7 @@ echo -ne " Scripts are in directory named ArchTitus " #!/bin/bash -if [ -f /.dockerenv ]; then +if [ -f /root/dockerenv ]; then echo "docker container found, i can't install" break else @@ -27,6 +27,7 @@ else arch-chroot /mnt /root/ArchTitus/1-setup.sh arch-chroot /mnt /usr/bin/runuser -u $USERNAME -- /home/$USERNAME/ArchTitus/2-user.sh arch-chroot /mnt /root/ArchTitus/3-post-setup.sh + echo -ne " ------------------------------------------------------------------------- █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗ From b69ec180422e3f60509daf29a53c423841100b18 Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Sat, 12 Feb 2022 17:45:04 +0800 Subject: [PATCH 07/10] Update archtitus.sh --- archtitus.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/archtitus.sh b/archtitus.sh index 3e70d71..d25aadf 100755 --- a/archtitus.sh +++ b/archtitus.sh @@ -19,7 +19,6 @@ echo -ne " #!/bin/bash if [ -f /root/dockerenv ]; then echo "docker container found, i can't install" - break else bash startup.sh source $SCRIPT_DIR/setup.conf From 6ff8c2b8a3e7d10d67ec4a1369e64a6c05c8fa29 Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Sat, 12 Feb 2022 18:07:33 +0800 Subject: [PATCH 08/10] Update archtitus.sh --- archtitus.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archtitus.sh b/archtitus.sh index d25aadf..0ed39f6 100755 --- a/archtitus.sh +++ b/archtitus.sh @@ -26,7 +26,7 @@ else arch-chroot /mnt /root/ArchTitus/1-setup.sh arch-chroot /mnt /usr/bin/runuser -u $USERNAME -- /home/$USERNAME/ArchTitus/2-user.sh arch-chroot /mnt /root/ArchTitus/3-post-setup.sh - +fi echo -ne " ------------------------------------------------------------------------- █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗ From 30ef9a9858c716e33d449d582a86f1baad1ff6a9 Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Sat, 12 Feb 2022 18:18:47 +0800 Subject: [PATCH 09/10] Update archtitus.sh --- archtitus.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archtitus.sh b/archtitus.sh index 0ed39f6..5bd6f1d 100755 --- a/archtitus.sh +++ b/archtitus.sh @@ -17,8 +17,8 @@ echo -ne " Scripts are in directory named ArchTitus " #!/bin/bash -if [ -f /root/dockerenv ]; then - echo "docker container found, i can't install" +if awk -F/ '$2 == "docker"' /proc/self/cgroup | read; then + echo -ne "docker container found script can't install (at the moment)" else bash startup.sh source $SCRIPT_DIR/setup.conf From c5ab73e013977ecd3352f7c45741bec537439804 Mon Sep 17 00:00:00 2001 From: happy4pizza <81280280+happy4pizza@users.noreply.github.com> Date: Mon, 14 Feb 2022 02:59:18 -0500 Subject: [PATCH 10/10] Removes lightlyshaders-git in aur-pkgs.txt Lightlyshaders is now depreciated. It is incompatible with the current version of Plasma (2.23+) used. Also the package fails to build on the AUR. --- pkg-files/aur-pkgs.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg-files/aur-pkgs.txt b/pkg-files/aur-pkgs.txt index 17ae4d8..b15a19d 100644 --- a/pkg-files/aur-pkgs.txt +++ b/pkg-files/aur-pkgs.txt @@ -3,7 +3,6 @@ brave-bin dxvk-bin github-desktop-bin lightly-git -lightlyshaders-git mangohud mangohud-common nerd-fonts-fira-code