Files
dotfiles/home-files/dot-config/Scripts/random_wall_on_home.sh
T
2026-04-30 02:11:36 +03:00

12 lines
196 B
Bash

#!/bin/bash
WALL_DIR="$HOME/Wallpapers"
WALL=$(find "$WALL_DIR" -type f | shuf -n 1)
pkill swaybg
swaybg -i "$WALL" -m fill &
notify-send "Wallpaper changed" "$(basename "$WALL")" -i "$WALL"