diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | skel-lxde/.config/openbox/lxde-rc.xml | 31 |
2 files changed, 37 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 48ef734..5528b53 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +etcskel-kanotix (2.0.17) dragonfire; urgency=low + + * Volume Control with Fn-Keys in LXDE + + -- Holger Paradies <retabell@gmx.de> Tue, 17 Dec 2013 20:28:10 +0100 + etcskel-kanotix (2.0.16) dragonfire; urgency=low * lxpanel update config diff --git a/skel-lxde/.config/openbox/lxde-rc.xml b/skel-lxde/.config/openbox/lxde-rc.xml index f9c72d5..55659fb 100644 --- a/skel-lxde/.config/openbox/lxde-rc.xml +++ b/skel-lxde/.config/openbox/lxde-rc.xml @@ -295,6 +295,37 @@ <command>gnome-screenshot --interactive</command> </action> </keybind> + + <!-- Volume Control with Fn Keys --> + <keybind key="XF86AudioLowerVolume"> + <action name="Execute"> + <startupnotify> + <enabled>true</enabled> + <name>volumedown</name> + </startupnotify> + <command>amixer -c 0 set Master 5%- unmute</command> + </action> + </keybind> + + <keybind key="XF86AudioRaiseVolume"> + <action name="Execute"> + <startupnotify> + <enabled>true</enabled> + <name>volumeup</name> + </startupnotify> + <command>amixer -c 0 set Master 5%+ unmute</command> + </action> + </keybind> + + <keybind key="XF86AudioMute"> + <action name="Execute"> + <startupnotify> + <enabled>true</enabled> + <name>volumedown</name> + </startupnotify> + <command>amixer -c 0 set Master toggle</command> + </action> + </keybind> </keyboard> |