У нас вы можете посмотреть бесплатно AutoKey Function Keys Remapping as modifiers with Xmodmap или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
NOTE: This video has been replaced by a revised, shorter version: • Linux AutoKey Keymapping to enable Functio... Using xmodmap to allow remapping function keys to modifier key function for use with Autokey. Goal - Use “F8“ & “=” to trigger python script using Autokey and xmodmap. Why this particular combination? It can be triggered with one hand Very few of my programs use that combination. Same principle would apply to other function keys or even normal keyboard keys. Problem: Autokey only allows normal keys to be combined with 6 Special Keys: Control Alt Shift Super Hyper Meta My solution: Create a custom .Xmodmap file to remap my F8 key to Hyper_R key function, effectively turning a one of my normal Function keys into a hyper key. Step-by-step how-to: Install Autokey Use xmodmap (CLI) to see if I have any free modifiers I can remap F8 key to Run Xev at command line to find out what keycode my F8 function key was sending (or use Xkeycaps) For example, F8 = keycode 74. Run Xmodmap at the terminal to see if there were any unused modifiers. Sure enough, it seemed that mod3 was unused. Created custom ~/.Xmodmap and placed it in my your home directory. It is only three lines. The first line clears mod3 (just to be sure it is not doing anything else), the second line assigns keycode 74 (my F8 key) to Hyper_R. A reboot may be necessary to make the new ~/.Xmodmap effective. clear mod3 keycode 74 = Hyper_R add mod3 = Hyper_R 5. To load/reload configuration files, reboot Now everything should be set up to create a custom Autokey script in the usual way. The only difference is now I can used my F8 key to trigger the Hyper key and combined it with a normal key, the equals (=) key. Further references: This video was inspired by this AutoKey forum thread: https://groups.google.com/forum/#!top... Xmodmap manual: https://www.x.org/archive/current/doc... More info about metakeys: https://www.emacswiki.org/emacs/MetaK... & https://unix.stackexchange.com/questi... & https://askubuntu.com/questions/42362... & https://superuser.com/questions/13520...