Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the name of "Fn" key for Awesome wm?

For example:

awful.key({"Shift", }, "Left", volwidget.down)

How to find out what to write instead of "Shift" to use "Fn" key?

like image 553
Allok Avatar asked May 27 '12 14:05

Allok


1 Answers

I've found the solution: the program xev.
If it runs, it doesn't show a Fn code. Actually it doesn't have to: X can't see that key.

Anyhow, it shows you the codes for "hot" keys, like Fn+LeftArrow (for volume down). In my case the name for that is XF86AudioLowerVolume and I can use it as such in configuration files.

like image 112
Allok Avatar answered Sep 30 '22 00:09

Allok