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