From 25b84d41bfab64516a22f65af648d1e4d22d8727 Mon Sep 17 00:00:00 2001 From: "yuri.kuit" Date: Fri, 5 Jun 2026 18:01:32 +0200 Subject: [PATCH] add fedora SilentSDDM-theme --- v2/fedora-full.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/v2/fedora-full.sh b/v2/fedora-full.sh index 7d929d1..e4786c6 100755 --- a/v2/fedora-full.sh +++ b/v2/fedora-full.sh @@ -84,6 +84,26 @@ EOF say_yellow "Restarting NetworkManager service..." 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 systemctl --user enable pipewire pipewire-pulse wireplumber