mirror of
https://github.com/tomru/hlwm-config.git
synced 2026-03-02 22:17:20 +01:00
9 lines
201 B
Bash
Executable File
9 lines
201 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
xsetroot -solid '$GRUVBOX_DARK0'
|
|
|
|
# random wallpaper
|
|
WALLPAPERDIR=$(dirname "$0")/wallpapers
|
|
WALLPAPER=`find $WALLPAPERDIR -type f | sort -R | head -n 1`
|
|
feh --bg-scale $WALLPAPER
|