dotfiles/scripts/randomwallpaper

9 lines
192 B
Text
Raw Normal View History

2022-02-15 21:53:09 +01:00
#!/bin/sh
mons=$(xrandr --listactivemonitors | wc -l)
mons=$((mons-1))
feh --bg-fill $(
fd -L '\.(png|jpg)' /usr/share/backgrounds/ ~/.local/share/backgrounds/ \
| shuf | head -n 2
)