add gitignore and update files

This commit is contained in:
m3philis
2025-03-17 21:28:22 +01:00
parent 9eadf45634
commit e798659b5c
51 changed files with 3790 additions and 3 deletions

11
feh/shadowmoses-random Executable file
View File

@@ -0,0 +1,11 @@
#! /bin/bash
THEME=shoujo_ai
ROTATED=$(xrandr --listmonitors | grep '1080.*x1920')
if [[ $ROTATED ]]
then
feh --bg-scale $(find $HOME/pictures/wallpaper/${THEME} -type f | shuf -n1) --bg-scale $(find $HOME/pictures/wallpaper/${THEME} -type f | shuf -n1) --bg-scale $(find $HOME/pictures/wallpaper/${THEME}_rotated -type f | shuf -n1)
else
feh --bg-fill -z $HOME/pictures/wallpaper/${THEME}
fi