diff --git a/dconf-settings.ini b/dconf-settings.ini index d1d9d7bf..ccbd1071 100644 --- a/dconf-settings.ini +++ b/dconf-settings.ini @@ -1,8 +1,8 @@ [org/gnome/desktop/background] color-shading-type='solid' picture-options='zoom' -picture-uri='file:///home/trude/.wallpapers/bg.png' -picture-uri-dark='file:///home/trude/.wallpapers/bg-dark.png' +picture-uri='file:///usr/share/backgrounds/gnome/bg.png' +picture-uri-dark='file:///usr/share/backgrounds/gnome/bg-dark.png' primary-color='#000000' secondary-color='#000000' @@ -28,7 +28,7 @@ show-battery-percentage = true [org/gnome/desktop/screensaver] color-shading-type='solid' picture-options='zoom' -picture-uri='file:///home/trude/.wallpapers/bg.png' +picture-uri='file:///usr/share/backgrounds/gnome/bg.png' primary-color='#000000' secondary-color='#000000' diff --git a/install.sh b/install.sh index 198f30d0..3e7e7b20 100755 --- a/install.sh +++ b/install.sh @@ -154,6 +154,10 @@ fi echo "${YELLOW}Installing Dotfiles...${NC}" cp -r "$HOME/dotfiles/home/." "$HOME" +# Copy wallpapers +echo "${YELLOW}Installing Wallpapers...${NC}" +sudo cp -r $HOME/dotfiles/wallpapers/* /usr/share/backgrounds/gnome/ + # Copy scripts echo "${YELLOW}Installing Scripts...${NC}" mkdir -p "$HOME/.local/bin" diff --git a/home/.wallpapers/bg-dark.png b/wallpapers/bg-dark.png similarity index 100% rename from home/.wallpapers/bg-dark.png rename to wallpapers/bg-dark.png diff --git a/home/.wallpapers/bg.png b/wallpapers/bg.png similarity index 100% rename from home/.wallpapers/bg.png rename to wallpapers/bg.png