feat: marking windows, then closing/moving them to current workspace
This commit is contained in:
@@ -1,8 +1,31 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
WALLPAPER_DIR="$HOME/Pictures/Wallpapers/current/"
|
||||
INTRO_DIR="$HOME/Pictures/Wallpapers/intro/"
|
||||
DELAY=5m
|
||||
|
||||
intro() {
|
||||
if [ -z "$(ls -A "$WALLPAPER_DIR")" ]; then
|
||||
echo "Current wallpaper folder is empty, nothing to do"
|
||||
sleep 1
|
||||
exit 0
|
||||
fi
|
||||
|
||||
WALLPAPER=$(find "$INTRO_DIR" -type l | shuf -n 1)
|
||||
|
||||
while true; do
|
||||
|
||||
if hyprctl hyprpaper reload ,"$WALLPAPER"; then
|
||||
sleep 1.5
|
||||
break
|
||||
fi
|
||||
|
||||
sleep 0.1
|
||||
|
||||
done
|
||||
|
||||
}
|
||||
|
||||
random_wallpaper() {
|
||||
# Check if folder is not empty
|
||||
if [ -z "$(ls -A "$WALLPAPER_DIR")" ]; then
|
||||
@@ -23,6 +46,7 @@ random_wallpaper() {
|
||||
}
|
||||
|
||||
loop() {
|
||||
intro
|
||||
while true; do
|
||||
random_wallpaper
|
||||
sleep "$DELAY"
|
||||
|
||||
Reference in New Issue
Block a user