Why can't I output a combination of three keys using AutoKey on Ubuntu 17.04?

342 Views Asked by At

Here's what I've done so far:

  • mapped super + h to keyboard.send_keys("<ctrl>+<f4>"), works
  • mapped super + h to keyboard.send_keys("<alt>+<f4>"), works
  • mapped super + h to keyboard.send_keys("<ctrl>+<alt>+<f4>"), doesn't work

Incidentally, keyboard.send_key("<super>") doesn't work either. Not sure if that is related to the original issue or not.

2

There are 2 best solutions below

0
On BEST ANSWER

Solution provided by xircon on Github

import pyautogui pyautogui.hotkey('ctrl', 'alt', 'F4')

0
On

Ubuntu 16.04 is the newest version supported by Autokey, if I remember correctly, may be the reason.