i3: Randomize wallpaper on login

This commit is contained in:
2022-06-09 19:48:25 +02:00
parent 263be3ebfc
commit 932e0a0b14
15 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,11 @@
#!/bin/sh
{% if hostname == "sputnik" %}
feh --bg-scale $(random-file-of ~/.config/wallpapers/3440x1440)
{% else %}
echo "Wallpaper not configured for this system"
exit 1
{% end %}