commit 05ac1a828f0a442c732f63cf921f6b6939ed54b6 parent 08e47c6b204bb20c506235082c429ddbe94710ac Author: awy <awy@awy.one> Date: Sat, 22 Mar 2025 19:10:48 +0300 slideshow script Diffstat:
M | .config/hypr/hyprland.conf | | | 2 | +- |
A | .local/bin/randombg | | | 11 | +++++++++++ |
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf @@ -13,7 +13,7 @@ exec-once = dunst exec-once = gpg-agent --daemon exec-once = gnome-keyring-daemon --start --components=secrets exec-once = foot --server -exec-once = setbg /mnt/ssd/papes/ +exec-once = randombg exec-once = waybar exec-once = mpd diff --git a/.local/bin/randombg b/.local/bin/randombg @@ -0,0 +1,11 @@ +#!/bin/sh +swaybg -i $(find /mnt/ssd/papes/. -type f | shuf -n1) -m fill & +OLD_PID=$! +while true; do + sleep 300 + swaybg -i $(find /mnt/ssd/papes/. -type f | shuf -n1) -m fill & + NEXT_PID=$! + sleep 5 + kill $OLD_PID + OLD_PID=$NEXT_PID +done