all repos — fluxbox @ 2e616226fe91a6a85168bf52d05c988cefe57dce

custom fork of the fluxbox windowmanager

added random and aspect options for background, thanks mitz
fluxgen fluxgen
commit

2e616226fe91a6a85168bf52d05c988cefe57dce

parent

7de6a40c46242fd18f8a1feff12c7a446ea05326

1 files changed, 5 insertions(+), 1 deletions(-)

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

@@ -202,7 +202,11 @@ if (strstr(m_background->options().c_str(), "tiled") != 0)

options += "-t "; if (strstr(m_background->options().c_str(), "centered") != 0) options += "-c "; - + if (strstr(m_background->options().c_str(), "random") != 0) + options += "-r "; + if (strstr(m_background->options.c_str(), "aspect") != 0) + options += "-a "; + // compose wallpaper application "fbsetbg" with argumetns std::string commandargs = "fbsetbg " + options + " " + filename;