46

I would like to be able to set three custom keyboard shortcuts to be able to decrease, increase and mute the volume in Ubuntu 12.04 (Unity). On my old Ubuntu 10.04 (Gnome) system I made CTRL + [, CTRL + ] and CTRL + \ my commands to achieve this.

What is the simplest way to go about this?

jokerdino
  • 41,320
max
  • 1,389

4 Answers4

62

@dobey's solution works if you want to have only one keyboard shortcut for increasing / decreasing the volume.

If instead you want to have multiple key bindings controlling the volume (like to keep the default volume buttons on your laptop working, while adding additional keyboard shortcuts to use when you connect an external keyboard that does not have volume controls), then:

  1. Go to System Settings → Keyboard → Shortcuts → Custom Shortcuts.

  2. Click + to add a new keyboard shortcut. Set the "Name" to Volume up, "Command" to

    amixer -D pulse sset Master 5%+ and click Apply.

  3. Click Disabled next to your new key and choose the desired binding on your keyboard.

  4. Add another shortcut with name Volume down and command

    amixer -D pulse sset Master 5%-

Steps GIF

Anis Abboud
  • 769
  • 5
  • 7
  • 1
    +1 Good magic - it works. It would be nice if it tied into the same volume bar that pops up with the regular volume buttons. – CivMeierFan Sep 15 '15 at 18:36
  • 13
    mute/unmute: amixer -D pulse sset Master toggle – CivMeierFan Sep 15 '15 at 18:38
  • I used your commands but the Volume up shortcut actually lowers the volume instead though it works normally in the terminal. What's going on? – user10853 Sep 02 '16 at 22:59
  • Make sure you typed 5%+ not 5%- for volume up. – Anis Abboud Sep 03 '16 at 19:05
  • Yes I confirm I had those right @AnisAbboud – user10853 Sep 18 '16 at 14:36
  • works for me on 14.04 as well ..+1 – Arkya Dec 23 '16 at 17:02
  • 6
    The volume up/down shortcuts don't work in Ubuntu 16.04 with Gnome3. The Mute shortcut, however, does. The up/down commands work if I use them in a terminal manually. I noticed the shortcuts instead set the values to 0%, implying a command parsing bug. An imperfect workaround is to use raw values instead -- e.g. amixer -D pulse -R sset Master 3277+ and amixer -D pulse -R sset Master 3277-. The actual number may vary depending on your device. My max raw value was 65536. – CivMeierFan Jul 13 '17 at 19:01
  • @AnisAbboud I have a similar question related to this question. Can you please check it out https://askubuntu.com/questions/1038099/capture2text-alternative-capture-text-from-screen-directly-in-ubuntu-mate – Ahmad Ismail May 19 '18 at 14:16
  • Small chuckle from for that fantastic "The End" – tisaconundrum Aug 01 '18 at 22:26
  • Is it possible to do the same thing for media play/pause. What would be command for that? – Abhishek Bhatia Apr 04 '19 at 23:03
  • JFTR, another way would be with the command xdotool key --clearmodifiers XF86AudioRaiseVolume – Pablo Bianchi Sep 28 '19 at 00:03
24

Open System Settings, go to Keyboard, then the Shortcuts tab, and finally choose Sound and Media in the list on the left. You can then choose the Volume related items in the list on the right side, and select which keybinding to use.

(Reverse usage of left and right here, for RTL languages.)

dobey
  • 40,982
  • This works, but it also disables the built-in Volume control buttons on my laptop. Anis' answer above allows those to still work. – CivMeierFan Jul 13 '17 at 19:21
  • 1
    That wasn't a requirement of the question asked, and also depends on how the volume control buttons are implemented. Also, this question is 5 years old, and Ubuntu 12.04 is End of Life now. – dobey Jul 13 '17 at 19:41
  • 1
    A suggestion for non multimedia keybindings: Volume Up ALT + PageUp, Volume Down ALT + PageDown, Mute ALT + Pos1.

    Though it is more of a Windows standard to use the PageUp and Down keys for volume it is mapped in a lot of software, too. Still, Firefox uses STRG + Page Up to switch between Tabs so just use ALT.

    – somethis Aug 14 '19 at 09:37
5

Usually, this command works just fine as a command for lowering the volume (Ubuntu 16.04):

amixer -q -D pulse sset Master 5%- 

On Ubuntu 18.XX (Gnome) escape the % symbol:

amixer -q -D pulse sset Master 5%%-

Worked for me!

-1

I had the same type of issue, I can confirm this syntax works:

amixer set Master 5%%-
amixer set Master 5%%+

Also be sure to not use - or + characters inside your custom shortcut name. I first used "Volume -" and "Volume +" which failed. Using "Volume up" and "Volume down" worked much better.

Mateow
  • 11
  • 1