ok thanks for the heads up mate, should be ok from there ![]()
1 2009-11-13 17:19:21
Re: Need to fix mbr (3 replies, posted in Help & Support (Stable))
2 2009-11-13 09:12:08
Topic: Need to fix mbr (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 ![]()
3 2009-11-08 08:25:42
Re: #! "noob" menu question (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!
4 2009-11-07 23:39:13
Re: Configuring shortcuts & easy way to configure special keys for laptops (28 replies, posted in Tips, Tricks & Scripts)
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 ![]()
good luck with it
5 2009-11-07 04:14:33
Re: Configuring shortcuts & easy way to configure special keys for laptops (28 replies, posted in Tips, Tricks & Scripts)
and jc i was wondering about the iconify windows too, thanks also for the super+D tip!
good luck!
6 2009-11-07 04:12:59
Re: Configuring shortcuts & easy way to configure special keys for laptops (28 replies, posted in Tips, Tricks & Scripts)
Just want to say that you guys are lifesavers! I searched far and wide (from the comfort of my laptop
) 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)