1

I'm trying to use right Ctrl to type ->

Is that possible? If not, do you know of an easy way to achieve it?

Here's the code I tried:

keycode 105 = (minus, greater)
dlin
  • 3,830
unloco
  • 133
  • 2
    Found a solution by creating a global shortcut for this command xdotool key minus greater – unloco May 04 '20 at 17:35
  • 3
    Welcome to AskUbuntu! You can reply your solution as an answer and accept it, for others to benefit. – dlin May 04 '20 at 17:46

1 Answers1

1

Install xdotool

sudo apt install xdotool

Then assign the following command to a global shortcut

xdotool key minus greater

You can also change the delay between the two characters (default is 12ms)

xdotool key --delay=5 minus greater
unloco
  • 133