9d56d3e272
Also add simple description comment to all script.
12 lines
229 B
Bash
Executable File
12 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Menu with wallpapers to set.
|
|
|
|
if [ "$(cat /etc/hostname)" = "pc" ]; then
|
|
res="1920x1080"
|
|
elif [ "$(cat /etc/hostname)" = "laptop" ]; then
|
|
res="1366x768"
|
|
fi
|
|
|
|
find ~/.config/wallpapers/"$res"/* | shuf | sxiv - -tb
|