diff options
author | Aleksei <alex3kov@zoho.com> | 2024-11-10 18:41:44 +0300 |
---|---|---|
committer | Aleksei <alex3kov@zoho.com> | 2024-11-10 18:41:44 +0300 |
commit | 6f53538a5a374bd603a1b24fad97bc06b077db4f (patch) | |
tree | b2b3834055c1e226a277405d2e47b3ebc9650c93 | |
parent | 8d99a469748b6e0925bdf92a7a0878cef099d91b (diff) |
-rwxr-xr-x | set_wallpaper.sh | 4 |
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 |