Comment 17 for bug 69938

Revision history for this message
Paul Tagliamonte (paultag) wrote : Re: [Bug 69938] Re: Fluxbox background disappears on certain events

--*no*-*desktop* - sorry. In the middle of the woods replying on my phone
without much cell service. Had to look up that manpage.
On Aug 3, 2014 7:35 AM, "pwaring" <email address hidden> wrote:

> --no-background isn't a valid argument according to the man page (on
> trusty).
>
> --
> You received this bug notification because you are a member of Fluxbox
> Maintainers, which is subscribed to Fluxbox Project.
> https://bugs.launchpad.net/bugs/69938
>
> Title:
> Fluxbox background disappears on certain events
>
> Status in Fluxbox Window Manager:
> New
> Status in “fluxbox” package in Ubuntu:
> Confirmed
>
> Bug description:
> I have a script that randomly selects a wallpaper from my art folder
> and than uses the command "fbsetbg" to set it as my background. This
> script is in my ~/.fluxbox/startup file.
>
> The script runs fine and displays the wallpaper after I login. I
> noticed, however, when I run certain programs (WINE in particular) the
> fluxbox background just disappears, and goes back to a plain gray. I
> am fairly certain the problem is not with the script or the entry on
> my startup file, but I am providing them below anyway.
>
> Here is my startup file:
>
> wallpaper.sh
> gaim &
> xmms ~/music/GamingFMClassicConsoleLowBW.pls &
> swiftfox &
> exec /usr/local/bin/fluxbox
>
> and the script (wallpaper.sh):
>
> #!/bin/bash
> WALLPAPERS="/home/paul/wallpaper" #change this path for your system
> ALIST=( `ls -w1 /home/paul/wallpaper` )
> RANGE=${#ALIST[@]}
> let "number = $RANDOM"
> let LASTNUM="`cat $WALLPAPERS/.last` + $number"
> let "number = $LASTNUM % $RANGE"
> echo $number > $WALLPAPERS/.last
> fbsetbg $WALLPAPERS/${ALIST[$number]} &
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/fluxbox/+bug/69938/+subscriptions
>