feat(swaybg) adding swaybg and some script

This commit is contained in:
2025-09-25 17:17:49 +02:00
parent 068f47e9a2
commit 4666731676
4 changed files with 25 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
export bg_dir="$HOME/media/images/bgs/"
find "$bg_dir" -type f | fzf --reverse --preview 'pistol {}' | while read -r img; do
pkill swaybg || true
swaybg -m fill -o '*' -i "$img" &
done