From ca92426bececf5e3f3acf6c83a11399350e5001e Mon Sep 17 00:00:00 2001 From: speedie Date: Tue, 21 Mar 2023 21:51:55 +0100 Subject: [PATCH] minor change --- src/speedwm-swal | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/speedwm-swal b/src/speedwm-swal index 105f217..41c4c87 100755 --- a/src/speedwm-swal +++ b/src/speedwm-swal @@ -22,7 +22,7 @@ SWAL_DEFAULT_CONFIG() SWAL_USE_WAL=true # Whether or not to use Pywal if possible (true/false) SWAL_RANDOMIZE=false # Select a random wallpaper on login SWAL_USE_IMAGE=false # Have image support - SWAL_IMAGE_SIZE="200" # Image size + SWAL_IMAGE_SIZE="500" # Image size } # Create the configuration @@ -145,12 +145,13 @@ SWAL_SELWALLPAPER() if [ "$SWAL_USE_IMAGE" = "true" ]; then IMG_ARG="-gc -is" + IMG_ARG_2="-mc" else SWAL_IMAGE_SIZE="" fi if [ "$ARG1" = "" ]; then - SWAL_SELWALLPAPER="$(printf "$(LIST_IMG)\n------\n..\nPreview\nPrevious\nRandom\nFavorites\nAdd used wallpaper to favorites\nOptions\nHelp\nExit" | $RUNLAUNCHER -g 1 -l 100 -p "What wallpaper would you like to set?" $IMG_ARG $SWAL_IMAGE_SIZE)" + SWAL_SELWALLPAPER="$(printf "$(LIST_IMG)\n------\n..\nPreview\nPrevious\nRandom\nFavorites\nAdd used wallpaper to favorites\nOptions\nHelp\nExit" | $RUNLAUNCHER -g 1 -l 100 -p "What wallpaper would you like to set?" $IMG_ARG $SWAL_IMAGE_SIZE $IMG_ARG_2 $SWAL_IMAGE_SIZE)" fi }