mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-06-20 19:58:47 +02:00
Improve the wallsetter script
This commit is contained in:
parent
013caaf031
commit
1e3008abf3
@ -1,7 +1,41 @@
|
|||||||
{ pkgs }:
|
{ pkgs }:
|
||||||
|
|
||||||
pkgs.writeShellScriptBin "wallsetter" ''
|
pkgs.writeShellScriptBin "wallsetter" ''
|
||||||
NEWWALLPAPER=$(find $HOME/Pictures/Wallpapers -type l | shuf -n 1)
|
WALLPAPER=$(find $HOME/Pictures/Wallpapers -type f | shuf -n 1)
|
||||||
|
PREVIOUS=$WALLPAPER
|
||||||
|
TRANSITION1="--transition-type wave --transition-angle 120 --transition-step 30"
|
||||||
|
TRANSITION2="--transition-type wipe --transition-angle 30 --transition-step 30"
|
||||||
|
TRANSITION3="--transition-type center --transition-step 30"
|
||||||
|
TRANSITION4="--transition-type outer --transition-pos 0.3,0.8 --transition-step 30"
|
||||||
|
TRANSITION5="--transition-type wipe --transition-angle 270 --transition-step 30"
|
||||||
|
|
||||||
${pkgs.swww}/bin/swww img $NEWWALLPAPER --transition-type wave --transition-angle 120 --transition-step 30
|
while true;
|
||||||
|
do
|
||||||
|
if [ $WALLPAPER == $PREVIOUS ]
|
||||||
|
then
|
||||||
|
WALLPAPER=$(find $HOME/Pictures/Wallpapers -type f | shuf -n 1)
|
||||||
|
else
|
||||||
|
PREVIOUS=$WALLPAPER
|
||||||
|
NUM=$(shuf -i 1-5 -n 1)
|
||||||
|
case $NUM in
|
||||||
|
1)
|
||||||
|
TRANSITION=$TRANSITION1
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
TRANSITION=$TRANSITION2
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
TRANSITION=$TRANSITION3
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
TRANSITION=$TRANSITION4
|
||||||
|
;;
|
||||||
|
5)
|
||||||
|
TRANSITION=$TRANSITION5
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
${pkgs.swww}/bin/swww img $WALLPAPER $TRANSITION
|
||||||
|
sleep 120
|
||||||
|
fi
|
||||||
|
done
|
||||||
''
|
''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user