2020-05-10 11:05:02 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ "$(cat /etc/hostname)" = "pc" ]; then
|
2020-05-13 15:07:01 +02:00
|
|
|
res="1920x1080"
|
2020-05-10 11:05:02 +02:00
|
|
|
elif [ "$(cat /etc/hostname)" = "laptop" ]; then
|
2020-05-13 15:07:01 +02:00
|
|
|
res="1366x768"
|
2020-05-10 11:05:02 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
find ~/.config/wallpapers/"$res"/* | shuf | sxiv - -tb
|