Wiktor Zykubek 0e831ebd9f Update few files
I'm to lazy to describe it... fuck me
2020-08-16 20:37:29 +02:00

14 lines
295 B
Bash
Executable File

#!/bin/sh
# Set desktop background.
[ "$1" ] && { xwallpaper --zoom "$1" && exit 1; }
if [ "$(cat /etc/hostname)" = "pc" ]; then
res="1920x1080"
elif [ "$(cat /etc/hostname)" = "laptop" ]; then
res="1366x768"
fi
xwallpaper --maximize /home/samedamci/.config/wallpapers/"$res"/wall15.png &