From 8e798ea24f1a08f7d991f114b4e9b2dfa2d0b3d9 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 20 May 2022 22:55:46 -0700 Subject: [herbstluftwm] Track the wallpaper used in herbstluftwm --- herbstluftwm/.config/herbstluftwm/autostart | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/herbstluftwm/.config/herbstluftwm/autostart b/herbstluftwm/.config/herbstluftwm/autostart index 4c2ab7f..aec44a5 100755 --- a/herbstluftwm/.config/herbstluftwm/autostart +++ b/herbstluftwm/.config/herbstluftwm/autostart @@ -41,7 +41,14 @@ hc emit_hook reload ## Background image: # Set a random image as the desktop wallpaper. -feh --bg-tile $(random-wallpaper) +wallpaper=$(random-wallpaper) + +if ! hc attr my_wallpaper +then + hc new_attr string my_wallpaper +fi + +feh --bg-tile "$wallpaper" && hc set_attr my_wallpaper "$wallpaper" ## Keybindings: # Remove all existing keybindings so that when herbstluftwm is -- cgit v1.2.3-54-g00ecf