From c2873dd88cc89512743daa2d022db8c005a75f68 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Sat, 20 Apr 2024 17:38:46 +0100 Subject: [PATCH] Add printing support to Arch --- install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 10f3877e..322aeaa8 100755 --- a/install.sh +++ b/install.sh @@ -6,9 +6,9 @@ if [ "$(grep -Ei 'debian|buntu|mint' /etc/*release)" ]; then sudo apt install -y curl git elif [ "$(grep -Ei 'arch|manjaro|artix' /etc/*release)" ]; then sudo pacman -Sy curl git - sudo pacman -Sy gnome power-profiles-daemon fwupd gst-plugin-pipewire # Gnome and optional dependencies. + sudo pacman -Sy gnome cups power-profiles-daemon fwupd gst-plugin-pipewire # Gnome and optional dependencies. sudo systemctl enable power-profiles-daemon - sudo systemctl start power-profiles-daemon + sudo systemctl enable cups elif [ "$(grep -Ei 'fedora' /etc/*release)" ]; then sudo dnf install curl git fi @@ -45,3 +45,4 @@ echo -e "${GREEN}[I] Done. Rebooting in 5 seconds...${ENDCOLOR}" sleep 5 systemctl reboot +reboot