mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-03-05 01:29:57 +01:00
9 lines
192 B
Text
9 lines
192 B
Text
|
#!/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
|
||
|
)
|