12 lines
407 B
Bash
Executable File
12 lines
407 B
Bash
Executable File
#! /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
|