-
Notifications
You must be signed in to change notification settings - Fork 489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keymap for Budgy Keyboard #950
Conversation
boards/budgy/qwerty/kb.py
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does qwerty need a seperate kb.py
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will fix, did not mean to do that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you're providing two keymaps, wouldn't it make more sense to have common kb.py
and main.py
, and split off only the keymaps as keymap_sw.py
and keymap_us.py
for example?
You are right! Will make sure to do that instead! |
The default keymap is US-qwerty, in order to switch to the Swedish-Colemak-DH keymap, comment out the US-qwerty keymap and uncomment the Swedish-Colemak-DH keymap in the main.py file.
@xs5871 made the keymap more modular, all you have to do is to uncomment/comment out an import to change layout. |
There are linter errors that need fixing |
This config has both US-qwerty and Swedish-Colemak-DH in mind.
The default keymap is US-qwerty, in order to switch to the Swedish-Colemak-DH keymap,
comment out the US-qwerty keymap and uncomment the Swedish-Colemak-DH keymap in the main.py file.