forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shim cli to new keyboard script (qmk#12780)
* Shim cli to new keyboard script * Shim cli to new keyboard script * Add docs
- breakpoint_2022_05_28
- breakpoint_2021_11_27
- breakpoint_2021_08_28
- 0.17.5
- 0.17.4
- 0.17.3
- 0.17.2
- 0.17.1
- 0.17.0
- 0.16.9
- 0.16.8
- 0.16.7
- 0.16.6
- 0.16.5
- 0.16.4
- 0.16.3
- 0.16.2
- 0.16.1
- 0.16.0
- 0.15.25
- 0.15.24
- 0.15.23
- 0.15.22
- 0.15.21
- 0.15.20
- 0.15.19
- 0.15.18
- 0.15.17
- 0.15.16
- 0.15.15
- 0.15.14
- 0.15.13
- 0.15.12
- 0.15.11
- 0.15.10
- 0.15.9
- 0.15.8
- 0.15.7
- 0.15.6
- 0.15.5
- 0.15.4
- 0.15.3
- 0.15.2
- 0.15.1
- 0.15.0
- 0.14.33
- 0.14.32
- 0.14.31
- 0.14.30
- 0.14.29
- 0.14.28
- 0.14.27
- 0.14.26
- 0.14.25
- 0.14.24
- 0.14.23
- 0.14.22
- 0.14.21
- 0.14.20
- 0.14.19
- 0.14.18
- 0.14.17
- 0.14.16
- 0.14.15
- 0.14.14
- 0.14.13
- 0.14.12
- 0.14.11
- 0.14.10
- 0.14.9
- 0.14.8
- 0.14.7
- 0.14.6
- 0.14.5
- 0.14.4
- 0.14.3
- 0.14.2
- 0.14.1
- 0.14.0
- 0.13.38
- 0.13.37
- 0.13.36
- 0.13.35
- 0.13.34
- 0.13.33
- 0.13.32
- 0.13.31
- 0.13.30
- 0.13.29
- 0.13.28
- 0.13.27
- 0.13.26
- 0.13.25
- 0.13.24
- 0.13.23
- 0.13.22
- 0.13.21
- 0.13.20
- 0.13.19
- 0.13.18
- 0.13.17
- 0.13.16
- 0.13.15
- 0.13.14
- 0.13.13
- 0.13.12
- 0.13.11
- 0.13.10
- 0.13.9
- 0.13.8
- 0.13.7
- 0.13.6
- 0.13.5
- 0.13.4
- 0.13.3
- 0.13.2
- 0.13.1
- 0.13.0
- 0.12.52
- 0.12.51
- 0.12.50
- 0.12.49
- 0.12.48
- 0.12.47
- 0.12.46
- 0.12.45
- 0.12.44
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from . import keyboard | ||
from . import keymap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
"""This script automates the creation of keyboards. | ||
""" | ||
from milc import cli | ||
|
||
|
||
@cli.subcommand('Creates a new keyboard') | ||
def new_keyboard(cli): | ||
"""Creates a new keyboard | ||
""" | ||
# TODO: replace this bodge to the existing script | ||
cli.run(['util/new_keyboard.sh'], capture_output=False) |