12 lines
338 B
Bash
Executable File
12 lines
338 B
Bash
Executable File
#!/bin/bash
|
|
|
|
THEME=pirate_ships
|
|
ROTATED=$(xrandr --listmonitors | grep '1080.*x1920')
|
|
|
|
if [[ $ROTATED ]]
|
|
then
|
|
feh --bg-scale $(find $HOME/pictures/wallpaper/${THEME}_rotated -type f | shuf -n1) --bg-scale $(find $HOME/pictures/wallpaper/${THEME} -type f | shuf -n1)
|
|
else
|
|
feh --bg-scale -z $HOME/pictures/wallpaper/${THEME}
|
|
fi
|