0

I'm running Kubuntu 20.10 desktop.

Howto link my email address to F1 key and by pressing F1 in any application enter my email address.

tmp1
  • 1

1 Answers1

0

The idea is to have a custom Keyboard Shortcut (settings, keyboard shortcuts) and use terminal commands... How to get a command to output the contents into Terminal, and my system clipboard using xsel -

echo "myemail@dada.com" | xsel -ib && xsel -ob

you  might have trouble customising to F1 and need another key combo 

make an alias for the above command, then the custom keyboard shortcut to run it as

bash -i -c "aliasname"

then ctrl-v to paste

pierrely
  • 653