Remove .local/bin/change_wallpaper.sh

This commit is contained in:
2025-10-05 12:26:16 +02:00
parent cf8eaa637b
commit 978c5aa8dd

View File

@@ -1,18 +0,0 @@
#!/bin/bash
case $1 in
"sfw")
wallpaper=$(find ~/Obrazy/tapety/sfw/ -type f | wofi --dmenu)
;;
"nsfw")
wallpaper=$(find ~/Obrazy/tapety/nsfw/ -type f | wofi --dmenu)
;;
*)
echo "Please choose nsfw or sfw"
exit 1
;;
esac
if [[ -n $wallpaper ]];then
hyprctl hyprpaper reload ,$wallpaper
fi