all repos — fluxbox @ 622d75f6429ebeb949b13d68c1ca188d7b5c8093

custom fork of the fluxbox windowmanager

fix for fbsetbg -l when last wallpaper was using fbsetroot
markt markt
commit

622d75f6429ebeb949b13d68c1ca188d7b5c8093

parent

6ac57655d9b0cf02d449aa9a01c7a82f5f3bbffa

2 files changed, 4 insertions(+), 1 deletions(-)

jump to
M src/Window.ccsrc/Window.cc

@@ -472,7 +472,7 @@ int real_x = frame().x();

int real_y = frame().y(); if (real_x >= 0 && - real_y + frame().y() >= 0 && + real_y >= 0 && real_x <= (signed) screen().width() && real_y <= (signed) screen().height()) place_window = false;
M util/fbsetbgutil/fbsetbg

@@ -306,6 +306,9 @@ if [ -z "$wallpaper" ]; then

message "No previous wallpaper recorded for display ${DISPLAY}" exit 1 fi + if [ "$option" = "fbsetroot" ]; then + use_fbsetroot + fi else message "No previous wallpaper recorded for display ${DISPLAY}" exit 1