LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 07-26-2016, 12:36 PM   #1
offgridguy
Senior Member
 
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109

Rep: Reputation: 147Reputation: 147
Fluxbox desktop manager problem


I have just re-installed my Salix 14.1 with fluxbox.
I updated and upgraded everything. It is working, except that I am no longer able to set any wallpaper, except those included by default.
The original install allowed me to do this, but now nothing happens.
When I click on desktop preferences, I get the following error message.
Screenshot.
Puzzled.
Attached Thumbnails
Click image for larger version

Name:	2016-07-26-102247_1366x768_scrot.jpg
Views:	33
Size:	94.9 KB
ID:	22570  
 
Old 07-26-2016, 08:15 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,311
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
Can you set the desktop wallpaper using the fbsetbg command?
 
1 members found this post helpful.
Old 07-26-2016, 10:48 PM   #3
offgridguy
Senior Member
 
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109

Original Poster
Rep: Reputation: 147Reputation: 147
Quote:
Originally Posted by frankbell View Post
Can you set the desktop wallpaper using the fbsetbg command?
Thank you for the response, and the link.
This is all new to me, but yes I can set the wallpaper using the fbsetbg command.
I see also that i have feh installed.
Not sure where to go from here, I have this set as wallpaper, using the instructions.(screenshot) Not that I want this, I want to pull up something from my pictures but when I do and and click on the "set as wallpaper"
nothing happens.
Attached Thumbnails
Click image for larger version

Name:	2016-07-26-204634_1366x768_scrot.png
Views:	11
Size:	19.4 KB
ID:	22575  

Last edited by offgridguy; 07-26-2016 at 10:51 PM.
 
Old 07-26-2016, 11:05 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,311
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
It sounds to me like that desktop manager thingee is broke, but I have no idea what the problem may be, as I've never used it. If you can find out the command line name of the desktop manager program, you might try starting it from the command line and post any error messages it throws; they might shed some light on the problem. Just a suggestion.

But, really, once you get to know Fluxbox, you may find that you don't need it.

I pretty much use barebones Fluxbox without any extras. I started using it when I really didn't know much about Linux, so I was forced to learn it.

(I have configured it up quite nicely to have all the eye candy I desire. You can see a screenshot here.)

Wish I could help more with the desktop manager.

Just for grins and giggles, here's the script I use to manage my wallpaper display. It's a variation of script I found on the FVWM website when I was playing with FVWM several years ago.

Code:
$ cat wallpaper.sh
#!/bin/sh

while true; do
       fbsetbg -f -R ~/wallpapers
	sleep 30m
done
It changes the wallpaper every 30 minutes.

Last edited by frankbell; 07-26-2016 at 11:10 PM.
 
Old 07-26-2016, 11:39 PM   #5
notKlaatu
Senior Member
 
Registered: Sep 2010
Location: Lawrence, New Zealand
Distribution: Slackware
Posts: 1,077

Rep: Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732
Yeah, I think setting it in your config file is better, as frankbell says.

Here's a snippet from my ~/.fluxbox/startup file:

Code:
fbsetbg -c ~/graphics/wallpaper/KDEDarkGrainWall.png &
fbsetbg sets the background to a KDE wallpaper in my graphics directory.

It does that every time I start fluxbox (that is, every time I login to my computer).
 
Old 07-26-2016, 11:42 PM   #6
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,311
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
Actually, that script is called in my ~/.fluxbox/startup file.

And kudos to notKlaatu. In another incarnation, he taught me to understand Fluxbox.
 
Old 07-26-2016, 11:45 PM   #7
notKlaatu
Senior Member
 
Registered: Sep 2010
Location: Lawrence, New Zealand
Distribution: Slackware
Posts: 1,077

Rep: Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732
I should mention how to do the same with feh.


The command to set a background would be something like...

Code:
$ feh --bg-center ~/graphics/wallpaper.png
When you use feh to set the wallpaper, it stores what you did in ~/.fehbg, meaning you can put this into ~/.fluxbox/startup

Code:
eval `~/.fehbg`
and feh will take care of the rest.

The nice thing about this is that it allows for persistent overrides; you get tired of your wallpaper? feh in a new one, and that'll be your new one until you get tired of that one.

You would want to do one or the other; it would be silly, unless there's a use-case I'm just not thinking of, to use feh and fbsetbg in your startup file.
 
Old 07-27-2016, 11:22 AM   #8
offgridguy
Senior Member
 
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109

Original Poster
Rep: Reputation: 147Reputation: 147
Okay, thank you both, I will do some experimenting with this.
 
Old 07-27-2016, 02:53 PM   #9
Michael Uplawski
Senior Member
 
Registered: Dec 2015
Posts: 1,620
Blog Entries: 40

Rep: Reputation: Disabled
I admit that I have never set any wallpaper in Fluxbox other than by including it in the style-definition, i.e. one of the files theme.cfg:

Code:
style.name:				Ups_four
style.author:				Michael Uplawski <michael.uplawski@uplawski.eu>


# background ------------------------------------

background:				tiled
background.pixmap:		 	~/.fluxbox/styles/Ups_four/background/bg.png

(...)
I guess that Fluxbox calls whichever suitable program is installed to set the background.

Last edited by Michael Uplawski; 07-27-2016 at 02:54 PM.
 
1 members found this post helpful.
Old 07-27-2016, 03:25 PM   #10
offgridguy
Senior Member
 
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109

Original Poster
Rep: Reputation: 147Reputation: 147
I am wondering here. would I create a new folder called
/graphics/wallpaper.png, and move some picture files into it?
And if so, I assume each file needs a unique name to be compatible with feh?

The thing I find puzzling is that I used to be able to simply open
a picture file, click on set as wallpaper and voila.

I downloaded and installed Salix 14.2 beta 1, but could not connect to the internet with it, so I reinstalled Salix14.1 thinking that might work, but no luck.

Last edited by offgridguy; 07-27-2016 at 03:36 PM.
 
Old 07-28-2016, 02:19 PM   #11
offgridguy
Senior Member
 
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109

Original Poster
Rep: Reputation: 147Reputation: 147
Smile Solved for now.

I did get Salix 14.2 beta 1 connected using my AirCard network, so I am going to
continue to test this for awhile.
Although this is xfce and not fluxbox, I am able to get the wallpaper I wanted plus
this version comes with Libre Office already installed.
I still haven't figured out fluxbox, but I intend to install lubuntu and put fluxbox
on it, and continue the learning curve.
 
Old 07-29-2016, 02:16 PM   #12
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,311
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
Quote:
I am wondering here. would I create a new folder called
/graphics/wallpaper.png, and move some picture files into it?
And if so, I assume each file needs a unique name to be compatible with feh?
Yes. I keep my wallpapers in a directory cleverly named ~/wallpapers.

Yes, each file would have to have a unique name, but not because of feh.

Quote:
The thing I find puzzling is that I used to be able to simply open
a picture file, click on set as wallpaper and voila.
That's part of the difference between a "window manager" such as Fluxobox and a "desktop environmnent such as KDE, XFCE, or Gnome. Window managers don't have a bunch of GUI bells and whistles. This article does a pretty good job of summarizing the difference between the two. http://www.linux.org/threads/desktop...managers.7802/
 
Old 07-30-2016, 09:33 AM   #13
offgridguy
Senior Member
 
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109

Original Poster
Rep: Reputation: 147Reputation: 147
Thanks for the help, frankbell.
 
Old 07-31-2016, 09:43 PM   #14
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,311
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
Thank you.

I will direct your attention to this post: http://www.linuxquestions.org/questi...2/#post5550794

If you want to become adept at Fluxbox, it will point you toward a good place to start.
 
1 members found this post helpful.
Old 07-31-2016, 11:04 PM   #15
offgridguy
Senior Member
 
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109

Original Poster
Rep: Reputation: 147Reputation: 147
Thank you for the link, this looks interesting.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Window manager, Display manager or Desktop environment? Otherworlds Linux - Newbie 11 02-29-2016 01:24 AM
[SOLVED] Fluxbox and power manager... trist007 Slackware 5 03-29-2014 12:02 PM
How to actually use fluxbox as my window manager? Erik_the_Red Linux - Newbie 2 05-25-2005 05:40 AM
How to change from Gnome desktop to Fluxbox desktop? davidas Debian 2 04-26-2004 09:46 PM
Gnome Desktop Manager logon problem l_pinter Linux - Newbie 5 01-12-2004 04:39 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 11:00 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration