A keyboard macro tool.
Please share your use case here!
The following packages will install two commands:
qk
quikey-daemon
Everything can be managed using just qk
and examples are further below.
$ pip3 install --user quikey
$ pip3 install --user -U quikey #<-- Upgrade
or
$ python3 -m pip install --user quikey
$ python3 -m pip install --user -U quikey #<-- Upgrade
$ curl -L -O https://aur.archlinux.org/cgit/aur.git/snapshot/quikey.tar.gz && tar -xvf quikey.tar.gz && cd quikey && makepkg -si
$ dnf copr enable bostrt/quikey # Enable repo
$ dnf install quikey # Install pkg
$ dnf update quikey # Update pkg
coming soon
There is a daemon process that must be running for Quikey's macro functionality to run. You can manage the daemon from the qk
client:
$ qk start
$ qk autostart enable
$ qk stop
$ qk add -n ':hello:' -p 'Hello, my name is John Doe.'
The -p
flag is optional. If it is not included, your default editor ($EDITOR
) will be used.
$ qk ls
+---------+------+----------------------------+-----------------------------+
| Name | Tags | Last Modified | Phrase |
+---------+------+----------------------------+-----------------------------+
| :hello: | | 2019-02-24T05:21:48.245440 | Hello, my name is John Doe. |
+---------+------+----------------------------+-----------------------------+
Use interactive menus to edit and remove phrases:
$ qk edit
$ qk rm
$ qk edit -n ':hello:'
This will drop into your default editor ($EDITOR
) with the current phrase for the given name.
$ qk rm -n ':hello:'
quikey phrase with key of :hello: has been deleted.
See DEVELOP.md for help.