10 lines
196 B
Plaintext
10 lines
196 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "$(cat /etc/hostname)" = "pc" ]; then
|
||
|
res="1920x1080"
|
||
|
elif [ "$(cat /etc/hostname)" = "laptop" ]; then
|
||
|
res="1366x768"
|
||
|
fi
|
||
|
|
||
|
find ~/.config/wallpapers/"$res"/* | shuf | sxiv - -tb
|