From a0821a434369aab0d05ae967f558f36ae9113eae Mon Sep 17 00:00:00 2001 From: sam-itt <54281837+sam-itt@users.noreply.github.com> Date: Wed, 2 Apr 2025 13:44:28 +0200 Subject: [PATCH] Fix install-gnome-backgrounds.sh --screen argument ${screens[2]} should be ${screens[@]} otherwise the --screen argument won't work. --- install-gnome-backgrounds.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-gnome-backgrounds.sh b/install-gnome-backgrounds.sh index cab92b0..f9fb989 100755 --- a/install-gnome-backgrounds.sh +++ b/install-gnome-backgrounds.sh @@ -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