10 lines
196 B
Bash
Executable File
10 lines
196 B
Bash
Executable File
#!/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
|