From 16a00deb71b3df2dac6d4398f0b1675b3e0882dc Mon Sep 17 00:00:00 2001 From: "A.d. I B" <62319714+pihdastudios@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:14:07 +0700 Subject: [PATCH] :beetle: Fix permissions from 700 to 755 The settings app cannot access the wallpaper and gives a blank image. This should fix it. --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 2382b52..dd2ab82 100755 --- a/install.sh +++ b/install.sh @@ -9,5 +9,6 @@ echo "Installing wallpapers..." sudo mkdir -p /usr/share/backgrounds/ sudo mkdir -p /usr/share/gnome-background-properties/ sudo cp -r $(pwd)/Dynamic_Wallpapers /usr/share/backgrounds/Dynamic_Wallpapers +sudo chmod -R 755 /usr/share/backgrounds/Dynamic_Wallpapers sudo cp $(pwd)/xml/* /usr/share/gnome-background-properties/ echo "Wallpapers has been installed. Enjoy setting them as your desktop background!"