the cleaning begins

This commit is contained in:
RafayAhmad7548 2025-07-26 19:58:52 +05:00
parent ee2cf704f2
commit dd8482a6fb
510 changed files with 0 additions and 41801 deletions

View file

@ -1,28 +0,0 @@
#!/bin/bash
monitor="eDP-1"
currentWallpaper=$(hyprctl hyprpaper listactive)
currentWallpaper=${currentWallpaper:8}
echo "$currentWallpaper"
wallpapers=$(hyprctl hyprpaper listloaded)
set=false
for wallpaper in $wallpapers; do
echo "$wallpaper"
if $set; then
hyprctl hyprpaper wallpaper "${monitor},${wallpaper}"
set=false
fi
if [ "$wallpaper" = "$currentWallpaper" ]; then
set=true
echo yes
fi
done
if $set; then
hyprctl hyprpaper wallpaper "${monitor},/home/rafayahmad/dotfiles/bgs/1.png"
fi