LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 01-10-2010, 02:31 PM   #16
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Rep: Reputation: Disabled

Ok,cool.
I recognize that Fluxbox theme in the last screenshot you posted! .
 
Old 01-10-2010, 02:37 PM   #17
mark_alfred
Senior Member
 
Registered: Jul 2003
Location: Toronto, Ontario, Canada
Distribution: Ubuntu Linux 16.04, Debian 10, LineageOS 14.1
Posts: 1,572

Rep: Reputation: 210Reputation: 210Reputation: 210
Quote:
Originally Posted by the trooper View Post
and the default Fluxbox menu and you still want a clickable icon/s to launch apps?.
Had you considered using keyboard shortcuts to launch apps?.
The right-click default menu is something I find irritating, actually. I use it occasionally, but for programs I use frequently I prefer using either wmdrawer, or using the keyboard to launch applications.

Regarding keys, I think that setting up a run-application function under Alt-F2 would be useful, given that both KDE and Gnome have this (meaning that many users are familiar with this functionality). So, under keys, I'd suggest "Mod1 F2 :ExecCommand fbrun". Admittedly, this counters the default set-up, which is to use this key combination to switch desktops/workspaces to workspace #2. Could set that up as Mod4 (the "Windows" key) instead.

Last edited by mark_alfred; 01-10-2010 at 02:42 PM.
 
Old 01-10-2010, 02:52 PM   #18
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Rep: Reputation: Disabled
Quote:
The right-click default menu is something I find irritating, actually. I use it occasionally, but for programs I use frequently I prefer using either wmdrawer, or using the keyboard to launch applications.
I agree,the right click menu is irritating.
That's why i decided to use keyboard shortcuts for my most regular use apps,like a shell,filebrowser etc.
Something like you were suggesting above,and as i rarely switch desktops i don't miss this keyboard function.
It just struck me as strange having fbpanel plus the default menu and now wmdrawer,all to launch applications.
But it's all down to personal preference.
 
Old 01-10-2010, 02:57 PM   #19
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
so
ok let me say that I want this to be a very configurable fluxbox setup
I want it so if someone wants to run all the stuff or just some or none
they can

so, heres my present sloppy startup in ~/.fluxbox

Code:
# fluxbox startup-script:
#
# Lines starting with a '#' are ignored.

# You can set your favourite wallpaper here if you don't want
# to do it from your style.
#
# fbsetbg -f /home/user/pictures/wallpaper.png
#
# This sets a black background

/usr/bin/fbsetroot -solid black

# This shows the fluxbox-splash-screen
# fbsetbg -C /usr/share/fluxbox/splash.jpg

# Other examples. Check man xset for details.
#
# Turn off beeps:
# xset -b
#
# Increase the keyboard repeat-rate:
# xset r rate 195 35
#
# Your own fonts-dir:
# xset +fp "/home/user/.fonts"
#
# Your favourite mouse cursor:
# xsetroot -cursor_name right_ptr
#
# Change your keymap:
# xmodmap "/home/user/.Xmodmap"

# I did this so random wallpaper at each login (fbsetbg -h is help)
fbsetbg -r /usr/share/wallpapers


# Applications you want to run with fluxbox.
# MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
#
# unclutter -idle 2 &
# wmnd &
# wmsmixer -w &
# idesk &
#rotate.sh &

conky -d &
fbpanel &
lxpanel &
systray-volume-control &
wmdrawer &

# And last but not least we start fluxbox.
# Because it is the last app you have to run it with ''exec'' before it.

exec /usr/bin/fluxbox
# or if you want to keep a log:
# exec /usr/bin/fluxbox -log "/home/user/.fluxbox/log"

and heres my fluxbox menu which just makes it so livecd user can be root without logging out/passwd etc

Code:
[begin] (fluxbox)
[include] (~/.fluxbox/root-menu)
[include] (~/.fluxbox/magic-menu)
[include] (~/.fluxbox/fluxbox-menu)
  [separator]
  [include] (~/.fluxbox/hag-xrandr-menu)
  [include] (~/.fluxbox/hag-baseconf-menu)
  [separator]
  [include] (~/.fluxbox/logout-menu)
  [include] (~/.fluxbox/hag-exit-menu)
[end]

so, magic-menu is remastersys-installer, live-magic and unetbootin,etc
root-menu is for opening root apps like pcmanfm, terminal, gparted,etc

xrandr is you know

baseconf is this

Code:
[begin]
    [submenu] (Wallpapers)
        [wallpapers] (~/.wallpapers/) {fbsetbg}
        [wallpapers] (/usr/share/wallpapers/) {fbsetbg}
    [end]
    [submenu] (Styles)
        [stylesdir] (~/.fluxbox/styles)
        [stylesdir] (/usr/share/fluxbox/styles)
    [end]
    [workspaces] (Workspaces)
    [config]  (Configuration)
[end]
heres menu pic
http://multidistro.com/deb/powerbox/menu2.png

and hag-exit-menu is very cool as it uses gtkdialog and nice
see here
http://multidistro.com/deb/powerbox/hagexit.png

the logout function wont work and I am too stupid to know why?
heres part of script hag-exit-fluxbox

Code:
case "$ACTION" in
    'lock') xlock ;;
    'logout') fluxbox-remote exit ;;
    'hibernate') sudo hibernate --force ;;
    'reboot') sudo shutdown -r now ;;
    'shutdown') sudo shutdown -h now ;;
esac
the logout part dont work?!
so I had to make additional fluxbox menu entry

Code:
[begin]
    [exit] (Logout)
[end]
LOL
thats how dumb I am as the answer is probably easier to fix script

anymore ideas gang/?
 
Old 01-10-2010, 03:15 PM   #20
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Rep: Reputation: Disabled
Dumb post,sorry.

Last edited by the trooper; 01-10-2010 at 03:18 PM.
 
Old 01-10-2010, 03:16 PM   #21
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
ah
most wise
I'll try it
 
Old 03-17-2010, 10:57 AM   #22
EdwinStarr
LQ Newbie
 
Registered: Feb 2010
Posts: 9

Rep: Reputation: 2
Hi all,

I like all the work I see here from you all. I have been working on Squeeze with Openbox. I am struggling getting all this stuff set up and working. Can this all be done on openbox? Or should I uninstall openbox and install fluxbox? I would love to build my Squeeze to look like what linux72 post #7 has and/or what mark_alfred post #6 has. I think using wmdrawer will help a lot for me too. Thank you all for showing your work and making suggestions on getting a lite desktop a-going. My main reason for posting this post is to get help on what to work with as a base to build on, openbox or fluxbox. I am still sort of a newbie to Linux. I've been using KDE 3.5.x for some time and now it is being deprecated to KDE 4, which I do not like much yet. Now I need newer kernels for my laptop so thats why I am building a Squeeze custom and openbox or fluxbox looks very good for the job. But this makes me a bit of a newbie all over again.

Thanks,

EdwinStarr
 
1 members found this post helpful.
Old 03-17-2010, 11:19 AM   #23
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Whats up edwin?

Great Openbox distro is ArchBang RC1 its a install and live cd
you can also dd it to usb
http://bbs.archlinux.org/viewtopic.php?id=89627

http://archbang.47.forumer.com/viewforum.php?f=14

http://wiki.archlinux.org/index.php/ArchBang

and you probably know about CrunchBang?
http://crunchbanglinux.org/
runs great on my 160mb lappy

and squeezebang
http://crunchbanglinux.org/forums/to...s-now-testing/

http://www.hungry.com/~daniel/squeezebang/

Good fluxbox distros are GRML medium, Hag Linux, FluxPup too
google those
 
  


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
How do I download the ubuntu ultimate edition 1.7 ? barnsley Linux - Newbie 1 11-09-2008 06:50 AM
LXer: Ultimate Edition: Not so ultimate LXer Syndicated Linux News 0 06-06-2008 04:41 PM
Ubuntu Ultimate Edition is it all that..... 720iD Ubuntu 15 09-15-2007 12:12 AM
Ubuntu Ultimate Edition 1.1 Screenshots lqsh Linux - News 1 02-01-2007 07:40 AM
LXer: Ubuntu Ultimate Edition 1.1 Screenshots LXer Syndicated Linux News 0 01-29-2007 10:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 01:44 AM.

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