Automate gnome optional dependencies

This commit is contained in:
2024-04-06 21:04:49 +01:00
parent c982dca5da
commit 961a674183
2 changed files with 3 additions and 6 deletions

View File

@@ -24,6 +24,9 @@ if [[ $d == "Debian" ]]; then
sudo apt install -y curl git sudo apt install -y curl git
elif [[ $d == "Arch" ]]; then elif [[ $d == "Arch" ]]; then
sudo pacman -Sy curl git sudo pacman -Sy curl git
sudo pacman -Sy gnome power-profiles-daemon fwupd gst-plugin-pipewire # Gnome and optional dependencies.
sudo systemctl enable power-profiles-daemon
sudo systemctl start power-profiles-daemon
elif [[ $d == "Fedora" ]]; then elif [[ $d == "Fedora" ]]; then
sudo dnf install curl git sudo dnf install curl git
fi fi

View File

@@ -1,6 +0,0 @@
#! /bin/bash
sudo pacman -Syu gnome power-profiles-daemon fwupd gst-plugin-pipewire
sudo systemctl enable power-profiles-daemon
sudo systemctl start power-profiles-daemon