summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksei <alex3kov@zoho.com>2024-11-10 18:41:44 +0300
committerAleksei <alex3kov@zoho.com>2024-11-10 18:41:44 +0300
commit6f53538a5a374bd603a1b24fad97bc06b077db4f (patch)
treeb2b3834055c1e226a277405d2e47b3ebc9650c93
parent8d99a469748b6e0925bdf92a7a0878cef099d91b (diff)
set_wallpaper.shHEADmaster
-rwxr-xr-xset_wallpaper.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/set_wallpaper.sh b/set_wallpaper.sh
index 0ee00a8..05ebf1b 100755
--- a/set_wallpaper.sh
+++ b/set_wallpaper.sh
@@ -9,9 +9,9 @@ WALL=$(ls -d $WALLPAPER_DIR/*|shuf|head -n1)
notify-send "WALL=$WALL"
case $XDG_SESSION_TYPE in
wayland)
- swaymsg output '*' background $WALL center
+ swaymsg output '*' background $WALL stretch
;;
x11)
- xwallpaper --center $WALL
+ xwallpaper --stretch $WALL
;;
esac