Files
dotfiles/feh/motherbase-random
2025-03-17 21:28:22 +01:00

12 lines
408 B
Bash
Executable File

#!/bin/bash
THEME=cyberpunk
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-scale -z $HOME/pictures/wallpaper/${THEME}
fi