mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-13 17:02:57 +01:00
8 lines
192 B
Bash
Executable file
8 lines
192 B
Bash
Executable file
#!/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
|
|
)
|