1
0
Fork
You've already forked tkhinter
0
forked from YeRudIT/tkhinter
No description
  • Python 100%
2023年03月17日 17:45:14 +00:00
static Updated README with usage example and installation 2023年03月17日 19:23:13 +02:00
LICENSE Initial commit 2023年03月17日 14:55:32 +02:00
README.org Aktualizovat „README.org" 2023年03月17日 17:45:14 +00:00
test_tkhints.py Created the tk app. 2023年03月17日 18:33:10 +02:00
tkhints.py Created the tk app. 2023年03月17日 18:33:10 +02:00

Tkinter Key Hinter

A program that creates hint window for keys.

Instalation

If you have nix installed download the tkhints.py file, make it executeble and run it. Otherwise change the shbang to #!/usr/bin/env python3, install the dependencies (tkinter) using your prefered package manager and run it.

Usage

Just pipe into tkhints.py text containing the keybinds with a description and title. The tex should be formatted as follows:

  • The title line should begin with *;
  • The kebind shoul be separated from the description with -, - are allowed in the description;
echo -e "* Henlo\nh - say henlo\ng - g-m" | ./tkhints.py

example usage