1

(3 replies, posted in Help & Support (Stable))

ok thanks for the heads up mate, should be ok from there cool

2

(3 replies, posted in Help & Support (Stable))

i installed zenwalk linux on a partition and set it to run a grub from the mbr and now it only shows zenwalk. is there a way i can change it so it also loads crunchbang? or how can i set it so the crunchbang loader comes up at the start as im not too sure on keeping zenwalk anyway roll

3

(16 replies, posted in WM/DE Talk)

If I am understanding your question properly...
Have you tried editing menu.xml ?? You will find it in (Menu) Preferences >Openbox Config >Edit menu.xml
Like below, just change *1* for the name of the application and *2* for the command to run it.

<item label="*1*">
            <action name="Execute">
                <execute>
                    *2*
                </execute>
            </action>
        </item>



Hope this helps!

em.... uberbdon and opothehippo... if you just read exactly what i pasted in the post before uberbdon's post, and copy what i pasted into the same place where i said i put it, it will work for you. if you notice, we are using the same key labels wink
good luck with it

and jc i was wondering about the iconify windows too, thanks also for the super+D tip!

good luck!

Just want to say that you guys are lifesavers! I searched far and wide (from the comfort of my laptop wink ) trying to figure out how to set the key bindings for the volume on my latop. Below is what I entered into my rc.xml (pasting it so it might be of use to others). And btw, "gnema" ... genius idea of the volume keys breaking mute! thanks again for a great post and much much love to the Linux Community!

Here's what I have (you'll notice I just swapped gnema's F8 for my XF86AudioLowerVolume).

    <!-- Keybindings for Master Volume -->
    <!-- XF86AudioMute [un]mute -->
    <keybind key="XF86AudioMute">
    <action name="Execute">
        <execute>amixer -c 0 set Master toggle</execute>
    </action>
    </keybind>
    <!-- XF86AudioLowerVolume 2db-decrease -->
    <keybind key="XF86AudioLowerVolume">
    <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    <action name="Execute">
        <execute>amixer -c 0 set Master 2dB-</execute>
    </action>
    </keybind>
    <!-- XF86AudioRaiseVolume 2db-increase -->
    <keybind key="XF86AudioRaiseVolume">
    <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    <action name="Execute">
        <execute>amixer -c 0 set Master 2dB+</execute>
    </action>
    </keybind>

(note: I pasted it in just before the end of the keybinds and before the mousebinds)