2019-10-07 20:32:30 +02:00
|
|
|
"""List the keyboards currently defined within QMK
|
|
|
|
"""
|
|
|
|
from milc import cli
|
|
|
|
|
2020-10-25 22:48:44 +01:00
|
|
|
import qmk.keyboard
|
2019-11-20 23:54:18 +01:00
|
|
|
|
2019-11-13 02:27:08 +01:00
|
|
|
|
2019-10-07 20:32:30 +02:00
|
|
|
@cli.subcommand("List the keyboards currently defined within QMK")
|
|
|
|
def list_keyboards(cli):
|
|
|
|
"""List the keyboards currently defined within QMK
|
|
|
|
"""
|
2020-10-25 22:48:44 +01:00
|
|
|
for keyboard_name in qmk.keyboard.list_keyboards():
|
2019-11-20 23:54:18 +01:00
|
|
|
print(keyboard_name)
|