Results 1 to 3 of 3

Thread: LXDE keyboard volume buttons stopped working

  1. #1
    Join Date
    Feb 2012
    Location
    Reno, NV
    Beans
    75
    Distro
    Ubuntu 14.04 Trusty Tahr

    LXDE keyboard volume buttons stopped working

    Hey all! I've started using LXDE on Ubuntu 11.10 regularly... it really is awesome.

    However I have a bit of a problem. I did a fix to get my keyboard volume up/down/mute buttons to work on LXDE and it was successful for a couple days. But magically a little bit ago they stopped working.

    Here's the fix I originally tried:

    Code:
    sudo pico ~/.config/openbox/lxde-rc.xml
    And in the <keyboard> segment I inserted:

    Code:
    <keybind key="XF86AudioLowerVolume">
         <action name="Execute">
           <startupnotify>
             <enabled>true</enabled>
             <name>amixer</name>
           </startupnotify>
           <command>amixer -c 0 set Master 5- unmute</command>
         </action>
       </keybind>
       <keybind key="XF86AudioRaiseVolume">
         <action name="Execute">
           <startupnotify>
             <enabled>true</enabled>
             <name>amixer</name>
           </startupnotify>
           <command>amixer -c 0 set Master 5+ unmute</command>
         </action>
       </keybind>
    Any help is greatly appreciated!
    Brewing the beer I drink since 2007. Brewing the coffee I drink since 2002.

  2. #2
    Join Date
    Aug 2007
    Beans
    463
    Distro
    Lubuntu Development Release

    Re: LXDE keyboard volume buttons stopped working

    Have you checked to make sure that it's still there? Perhaps the file was overwritten.

  3. #3
    Join Date
    Feb 2012
    Location
    Reno, NV
    Beans
    75
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: LXDE keyboard volume buttons stopped working

    Yeah I definitely did. Still there. I even removed and replaced the code to no avail.
    Brewing the beer I drink since 2007. Brewing the coffee I drink since 2002.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •