Volume Hot Key not working in Lubuntu
I installed Lubuntu(14.04.2 LTS) in my Lenovo Z510.
The multimedia hot keys in my laptop is independent. Means to use multimedia keys I don't have to press Fn
key. The brightness hot keys are working perfectly but only the volume buttons(mute, volume up, volume down) not working.
I tried
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-up
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-down
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-mute
but still nothing happens.
sound keyboard lubuntu shortcut-keys
add a comment |
I installed Lubuntu(14.04.2 LTS) in my Lenovo Z510.
The multimedia hot keys in my laptop is independent. Means to use multimedia keys I don't have to press Fn
key. The brightness hot keys are working perfectly but only the volume buttons(mute, volume up, volume down) not working.
I tried
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-up
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-down
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-mute
but still nothing happens.
sound keyboard lubuntu shortcut-keys
add a comment |
I installed Lubuntu(14.04.2 LTS) in my Lenovo Z510.
The multimedia hot keys in my laptop is independent. Means to use multimedia keys I don't have to press Fn
key. The brightness hot keys are working perfectly but only the volume buttons(mute, volume up, volume down) not working.
I tried
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-up
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-down
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-mute
but still nothing happens.
sound keyboard lubuntu shortcut-keys
I installed Lubuntu(14.04.2 LTS) in my Lenovo Z510.
The multimedia hot keys in my laptop is independent. Means to use multimedia keys I don't have to press Fn
key. The brightness hot keys are working perfectly but only the volume buttons(mute, volume up, volume down) not working.
I tried
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-up
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-down
gsettings reset org.gnome.settings-daemon.plugins.media-keys volume-mute
but still nothing happens.
sound keyboard lubuntu shortcut-keys
sound keyboard lubuntu shortcut-keys
asked Apr 18 '15 at 8:12
user3797836user3797836
3612
3612
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
on 17.04, default volume commands won't work, because on ~/.config/openbox/lubuntu-rc.xml the amixer command is wrong. In order to fix it, find "XF86Audio" key tags
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -q sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -q sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -q sset Master toggle</command>
</action>
</keybind>
change amixer -q option to "amixer -D pulse". the file must be like the following:
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master toggle</command>
</action>
</keybind>
I thinkopenbox --reconfigure
is needed for changes to take effect, but it's still not working for me. I normally have to hit Fn in conjunction with F1, F2, and F3 for volume control (not working) and F5 and F6 for brightness control (which does work).
– Michael
Jul 7 '18 at 18:30
Ok I take that back, it's actually working, but there is no indicator like the large overlay that shows up when I adjust brightness.
– Michael
Jul 7 '18 at 20:38
@Michael, you are right! This DE doesn't show any OSD overlay for sound. As I never used one, I don't know any one. But you can try google it or even trying to use xfce's one
– spucktek
Jul 9 '18 at 11:59
add a comment |
Try to change some commands in $HOME/.config/openbox/lubuntu-rc.xml
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%-</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master 0%</command>
</action>
</keybind>
add a comment |
In Lubuntu 18.04.1 my speaker volume control hot keys did not work. In trying to find a way to edit the lubuntu-rc.xml file I found a GUI approach to achieving the same results as answered by @spucktek and @Alexander Mordovskiy. The solution is still to change the XF86Audio command lines from "-q sset" to "-D pulse sset".
To modify the lubuntu-rc.xml file in the GUI
-> select "Menu" from the desktop panel, my menu button is on the bottom,
-> then "Preferences" -> "Set Up Hot Keys".
The LXHotkey panel opens up. There are two tabs at the top of the panel, Actions
and Programs.
-> Select the Programs tab.
Find the "XF86AudioRaiseVolume" asset under the Hotkey 1 column.
-> doubleclick 'XF86AudioRaiseVolume' and a small edit panel opens.
-> in command line field change the "amixer -q sset Master 3%+ unmute" line
from 'amixer -q sset' to "amixer -D pulse sset"
The command line should now read "amixer -D pulse sset Master 3%+ unmute"
-> click the [check button] at the top of the panel to apply the changes.
Repeat for entries "XF86AudioLowerVolume" and "XF86AudioMute".
Once you're finished
-> save your changes by clicking the "folder" icon button located directly below the "Edit" menu.
Hopefully a noob like myself will find this helpful.
add a comment |
Try keytouch, a keyboard shortcuts editor.
Install in the terminal by typing
sudo apt-get install keytouch-editor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f610786%2fvolume-hot-key-not-working-in-lubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
on 17.04, default volume commands won't work, because on ~/.config/openbox/lubuntu-rc.xml the amixer command is wrong. In order to fix it, find "XF86Audio" key tags
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -q sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -q sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -q sset Master toggle</command>
</action>
</keybind>
change amixer -q option to "amixer -D pulse". the file must be like the following:
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master toggle</command>
</action>
</keybind>
I thinkopenbox --reconfigure
is needed for changes to take effect, but it's still not working for me. I normally have to hit Fn in conjunction with F1, F2, and F3 for volume control (not working) and F5 and F6 for brightness control (which does work).
– Michael
Jul 7 '18 at 18:30
Ok I take that back, it's actually working, but there is no indicator like the large overlay that shows up when I adjust brightness.
– Michael
Jul 7 '18 at 20:38
@Michael, you are right! This DE doesn't show any OSD overlay for sound. As I never used one, I don't know any one. But you can try google it or even trying to use xfce's one
– spucktek
Jul 9 '18 at 11:59
add a comment |
on 17.04, default volume commands won't work, because on ~/.config/openbox/lubuntu-rc.xml the amixer command is wrong. In order to fix it, find "XF86Audio" key tags
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -q sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -q sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -q sset Master toggle</command>
</action>
</keybind>
change amixer -q option to "amixer -D pulse". the file must be like the following:
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master toggle</command>
</action>
</keybind>
I thinkopenbox --reconfigure
is needed for changes to take effect, but it's still not working for me. I normally have to hit Fn in conjunction with F1, F2, and F3 for volume control (not working) and F5 and F6 for brightness control (which does work).
– Michael
Jul 7 '18 at 18:30
Ok I take that back, it's actually working, but there is no indicator like the large overlay that shows up when I adjust brightness.
– Michael
Jul 7 '18 at 20:38
@Michael, you are right! This DE doesn't show any OSD overlay for sound. As I never used one, I don't know any one. But you can try google it or even trying to use xfce's one
– spucktek
Jul 9 '18 at 11:59
add a comment |
on 17.04, default volume commands won't work, because on ~/.config/openbox/lubuntu-rc.xml the amixer command is wrong. In order to fix it, find "XF86Audio" key tags
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -q sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -q sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -q sset Master toggle</command>
</action>
</keybind>
change amixer -q option to "amixer -D pulse". the file must be like the following:
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master toggle</command>
</action>
</keybind>
on 17.04, default volume commands won't work, because on ~/.config/openbox/lubuntu-rc.xml the amixer command is wrong. In order to fix it, find "XF86Audio" key tags
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -q sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -q sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -q sset Master toggle</command>
</action>
</keybind>
change amixer -q option to "amixer -D pulse". the file must be like the following:
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+ unmute</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%- unmute</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master toggle</command>
</action>
</keybind>
answered Jul 6 '17 at 17:57
spucktekspucktek
19917
19917
I thinkopenbox --reconfigure
is needed for changes to take effect, but it's still not working for me. I normally have to hit Fn in conjunction with F1, F2, and F3 for volume control (not working) and F5 and F6 for brightness control (which does work).
– Michael
Jul 7 '18 at 18:30
Ok I take that back, it's actually working, but there is no indicator like the large overlay that shows up when I adjust brightness.
– Michael
Jul 7 '18 at 20:38
@Michael, you are right! This DE doesn't show any OSD overlay for sound. As I never used one, I don't know any one. But you can try google it or even trying to use xfce's one
– spucktek
Jul 9 '18 at 11:59
add a comment |
I thinkopenbox --reconfigure
is needed for changes to take effect, but it's still not working for me. I normally have to hit Fn in conjunction with F1, F2, and F3 for volume control (not working) and F5 and F6 for brightness control (which does work).
– Michael
Jul 7 '18 at 18:30
Ok I take that back, it's actually working, but there is no indicator like the large overlay that shows up when I adjust brightness.
– Michael
Jul 7 '18 at 20:38
@Michael, you are right! This DE doesn't show any OSD overlay for sound. As I never used one, I don't know any one. But you can try google it or even trying to use xfce's one
– spucktek
Jul 9 '18 at 11:59
I think
openbox --reconfigure
is needed for changes to take effect, but it's still not working for me. I normally have to hit Fn in conjunction with F1, F2, and F3 for volume control (not working) and F5 and F6 for brightness control (which does work).– Michael
Jul 7 '18 at 18:30
I think
openbox --reconfigure
is needed for changes to take effect, but it's still not working for me. I normally have to hit Fn in conjunction with F1, F2, and F3 for volume control (not working) and F5 and F6 for brightness control (which does work).– Michael
Jul 7 '18 at 18:30
Ok I take that back, it's actually working, but there is no indicator like the large overlay that shows up when I adjust brightness.
– Michael
Jul 7 '18 at 20:38
Ok I take that back, it's actually working, but there is no indicator like the large overlay that shows up when I adjust brightness.
– Michael
Jul 7 '18 at 20:38
@Michael, you are right! This DE doesn't show any OSD overlay for sound. As I never used one, I don't know any one. But you can try google it or even trying to use xfce's one
– spucktek
Jul 9 '18 at 11:59
@Michael, you are right! This DE doesn't show any OSD overlay for sound. As I never used one, I don't know any one. But you can try google it or even trying to use xfce's one
– spucktek
Jul 9 '18 at 11:59
add a comment |
Try to change some commands in $HOME/.config/openbox/lubuntu-rc.xml
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%-</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master 0%</command>
</action>
</keybind>
add a comment |
Try to change some commands in $HOME/.config/openbox/lubuntu-rc.xml
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%-</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master 0%</command>
</action>
</keybind>
add a comment |
Try to change some commands in $HOME/.config/openbox/lubuntu-rc.xml
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%-</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master 0%</command>
</action>
</keybind>
Try to change some commands in $HOME/.config/openbox/lubuntu-rc.xml
<!-- Keybinding for Volume management -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -D pulse sset Master 3%-</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>amixer -D pulse sset Master 0%</command>
</action>
</keybind>
edited Apr 22 '17 at 10:56
Zanna
50.7k13136241
50.7k13136241
answered Apr 22 '17 at 10:27
Alexander MordovskiyAlexander Mordovskiy
312
312
add a comment |
add a comment |
In Lubuntu 18.04.1 my speaker volume control hot keys did not work. In trying to find a way to edit the lubuntu-rc.xml file I found a GUI approach to achieving the same results as answered by @spucktek and @Alexander Mordovskiy. The solution is still to change the XF86Audio command lines from "-q sset" to "-D pulse sset".
To modify the lubuntu-rc.xml file in the GUI
-> select "Menu" from the desktop panel, my menu button is on the bottom,
-> then "Preferences" -> "Set Up Hot Keys".
The LXHotkey panel opens up. There are two tabs at the top of the panel, Actions
and Programs.
-> Select the Programs tab.
Find the "XF86AudioRaiseVolume" asset under the Hotkey 1 column.
-> doubleclick 'XF86AudioRaiseVolume' and a small edit panel opens.
-> in command line field change the "amixer -q sset Master 3%+ unmute" line
from 'amixer -q sset' to "amixer -D pulse sset"
The command line should now read "amixer -D pulse sset Master 3%+ unmute"
-> click the [check button] at the top of the panel to apply the changes.
Repeat for entries "XF86AudioLowerVolume" and "XF86AudioMute".
Once you're finished
-> save your changes by clicking the "folder" icon button located directly below the "Edit" menu.
Hopefully a noob like myself will find this helpful.
add a comment |
In Lubuntu 18.04.1 my speaker volume control hot keys did not work. In trying to find a way to edit the lubuntu-rc.xml file I found a GUI approach to achieving the same results as answered by @spucktek and @Alexander Mordovskiy. The solution is still to change the XF86Audio command lines from "-q sset" to "-D pulse sset".
To modify the lubuntu-rc.xml file in the GUI
-> select "Menu" from the desktop panel, my menu button is on the bottom,
-> then "Preferences" -> "Set Up Hot Keys".
The LXHotkey panel opens up. There are two tabs at the top of the panel, Actions
and Programs.
-> Select the Programs tab.
Find the "XF86AudioRaiseVolume" asset under the Hotkey 1 column.
-> doubleclick 'XF86AudioRaiseVolume' and a small edit panel opens.
-> in command line field change the "amixer -q sset Master 3%+ unmute" line
from 'amixer -q sset' to "amixer -D pulse sset"
The command line should now read "amixer -D pulse sset Master 3%+ unmute"
-> click the [check button] at the top of the panel to apply the changes.
Repeat for entries "XF86AudioLowerVolume" and "XF86AudioMute".
Once you're finished
-> save your changes by clicking the "folder" icon button located directly below the "Edit" menu.
Hopefully a noob like myself will find this helpful.
add a comment |
In Lubuntu 18.04.1 my speaker volume control hot keys did not work. In trying to find a way to edit the lubuntu-rc.xml file I found a GUI approach to achieving the same results as answered by @spucktek and @Alexander Mordovskiy. The solution is still to change the XF86Audio command lines from "-q sset" to "-D pulse sset".
To modify the lubuntu-rc.xml file in the GUI
-> select "Menu" from the desktop panel, my menu button is on the bottom,
-> then "Preferences" -> "Set Up Hot Keys".
The LXHotkey panel opens up. There are two tabs at the top of the panel, Actions
and Programs.
-> Select the Programs tab.
Find the "XF86AudioRaiseVolume" asset under the Hotkey 1 column.
-> doubleclick 'XF86AudioRaiseVolume' and a small edit panel opens.
-> in command line field change the "amixer -q sset Master 3%+ unmute" line
from 'amixer -q sset' to "amixer -D pulse sset"
The command line should now read "amixer -D pulse sset Master 3%+ unmute"
-> click the [check button] at the top of the panel to apply the changes.
Repeat for entries "XF86AudioLowerVolume" and "XF86AudioMute".
Once you're finished
-> save your changes by clicking the "folder" icon button located directly below the "Edit" menu.
Hopefully a noob like myself will find this helpful.
In Lubuntu 18.04.1 my speaker volume control hot keys did not work. In trying to find a way to edit the lubuntu-rc.xml file I found a GUI approach to achieving the same results as answered by @spucktek and @Alexander Mordovskiy. The solution is still to change the XF86Audio command lines from "-q sset" to "-D pulse sset".
To modify the lubuntu-rc.xml file in the GUI
-> select "Menu" from the desktop panel, my menu button is on the bottom,
-> then "Preferences" -> "Set Up Hot Keys".
The LXHotkey panel opens up. There are two tabs at the top of the panel, Actions
and Programs.
-> Select the Programs tab.
Find the "XF86AudioRaiseVolume" asset under the Hotkey 1 column.
-> doubleclick 'XF86AudioRaiseVolume' and a small edit panel opens.
-> in command line field change the "amixer -q sset Master 3%+ unmute" line
from 'amixer -q sset' to "amixer -D pulse sset"
The command line should now read "amixer -D pulse sset Master 3%+ unmute"
-> click the [check button] at the top of the panel to apply the changes.
Repeat for entries "XF86AudioLowerVolume" and "XF86AudioMute".
Once you're finished
-> save your changes by clicking the "folder" icon button located directly below the "Edit" menu.
Hopefully a noob like myself will find this helpful.
answered Jan 26 at 23:05
ddmaxddmax
113
113
add a comment |
add a comment |
Try keytouch, a keyboard shortcuts editor.
Install in the terminal by typing
sudo apt-get install keytouch-editor
add a comment |
Try keytouch, a keyboard shortcuts editor.
Install in the terminal by typing
sudo apt-get install keytouch-editor
add a comment |
Try keytouch, a keyboard shortcuts editor.
Install in the terminal by typing
sudo apt-get install keytouch-editor
Try keytouch, a keyboard shortcuts editor.
Install in the terminal by typing
sudo apt-get install keytouch-editor
edited Nov 21 '15 at 19:02
Alex Gallegos
34
34
answered Apr 18 '15 at 11:22
Niklas LindskogNiklas Lindskog
16410
16410
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f610786%2fvolume-hot-key-not-working-in-lubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown