keyboard.py 296 B

1234567891011
  1. """This script automates the creation of keyboards.
  2. """
  3. from milc import cli
  4. @cli.subcommand('Creates a new keyboard')
  5. def new_keyboard(cli):
  6. """Creates a new keyboard
  7. """
  8. # TODO: replace this bodge to the existing script
  9. cli.run(['util/new_keyboard.sh'], capture_output=False)