add fedora SilentSDDM-theme

This commit is contained in:
2026-06-05 18:01:32 +02:00
parent 94aec264ec
commit 25b84d41bf
+20
View File
@@ -84,6 +84,26 @@ EOF
say_yellow "Restarting NetworkManager service..." say_yellow "Restarting NetworkManager service..."
sudo systemctl restart NetworkManager sudo systemctl restart NetworkManager
# install SDDM-theme
say_yellow "Installing SDDM Theme"
GIT_DIR="$HOME/git"
mkdir -p "$GIT_DIR"
# Run the installation in a subshell to avoid changing the main script's working directory
(
if cd "$GIT_DIR"; then
echo "Successfully entered $GIT_DIR. Proceeding with SilentSDDM installation..."
git clone -b main --depth=1 https://github.com/uiriansan/SilentSDDM && \
cd SilentSDDM && \
./install.sh
else
echo "Error: Failed to navigate to $GIT_DIR" >&2
exit 1
fi
)
# Enable pipewire # Enable pipewire
systemctl --user enable pipewire pipewire-pulse wireplumber systemctl --user enable pipewire pipewire-pulse wireplumber