The Computer Oracle

Is it possible to add volume controls & shortcut keys to a mechanical keyboard which does not have the keys?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Over a Mysterious Island

--

Chapters
00:00 Is It Possible To Add Volume Controls &Amp; Shortcut Keys To A Mechanical Keyboard Which Does Not Ha
00:21 Accepted Answer Score 6
00:47 Answer 2 Score 4
01:30 Answer 3 Score 3
02:07 Answer 4 Score 1
03:07 Thank you

--

Full question
https://superuser.com/questions/278369/i...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#keyboard #keyboardshortcuts

#avk47



ACCEPTED ANSWER

Score 6


You could use a generic hotkey utility like AutoHotkey to assign keyboard shortcuts (something unlikely to be used by normal applications, like Ctrl+Alt+F12) to perform your desired special functions.


Examples:

Windows+F11 increase volume:

#F11::Send {Volume_Up}

Ctrl+Alt+Numpad0 start Calculator:

^!Numpad0::Run Calc

See the linked pages for hotkey reference, changing volume.




ANSWER 2

Score 4


I found some interesting things in researching this, but this is probably the most interesting:

http://www.piengineering.com/xkeys/xkstick.php

x-keys stick

The X-Keys Stick is very spendy at $99 though.

The other alternatives are things like an inexpensive USB keypad, which can be had for under $20, and you could remap its keys via software to multimedia functions. I did find one with dedicated multimedia keys, but it's... odd. The model # is 1000-BRF.

usb keypad with multimedia keys

Beyond that, gaming related devices like the Cyber Snipa game pad, or the Logitech G13 gameboard.

More obscure stuff would be shuttle controls like the ShuttleXpress or the Shuttle Pro

Contour Design ShuttleXpress




ANSWER 3

Score 3


Assuming you are using Windows, and if you can do without program shortcuts (I just use WinKey search), you may find 3RVX useful. You can use it to add keyboard shortcuts for volume control as well as mouse combinations. I use WinKey + mousewheel to adjust volume. It also adds an on screen display volume slider. It works well, but as it runs on .NET, it does use more memory than it should for something that runs all the time. The author is making a new version which does not run through .NET though. (I don't know what happened regarding that - there's no longer any mention of it)




ANSWER 4

Score 1


NirCMD is a light-weight utility with quite a few nice features.

I setup a few desktop shortcuts (with Keyboard Shortcuts) on an alternate monitor (out of the way).

  • Toggle System Mute (Shift-F11) C:\nircmd.exe mutesysvolume 2
  • Increase Volume (Shift-F10) C:\nircmd.exe changesysvolume -5000
  • Decrease Volume (Shift+F9) C:\nircmd.exe changesysvolume -5000

Finally, I also have shortcuts setup for calculator and the snipping tool:

  • C:\Windows\System32\calc.exe (Shift+F8)
  • %windir%\system32\SnippingTool.exe (Shift+F12)

Each of these keyboard shortcuts work from within other programs. Not bad for emergency Mutes, etc.