Fix install-gnome-backgrounds.sh --screen argument

${screens[2]} should be ${screens[@]} otherwise the --screen argument won't work.
This commit is contained in:
sam-itt
2025-04-02 13:44:28 +02:00
committed by GitHub
parent 3a24624d04
commit a0821a4343

View File

@@ -189,7 +189,7 @@ fi
install_wallpaper() {
echo
for theme in "${themes[@]}"; do
for screen in "${screens[2]}"; do
for screen in "${screens[@]}"; do
install "$theme" "$screen"
done
done