-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhamster.yaml
More file actions
1201 lines (1191 loc) · 34.3 KB
/
hamster.yaml
File metadata and controls
1201 lines (1191 loc) · 34.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 通用配置
general:
#是否开启icloud同步
enableAppleCloud: false
# icloud同步过滤规则
regexOnCopyFile:
- ^.*[.]userdb.*$
- ^.*build.*$
- ^.*SharedSupport.*$
- ^.*[.]bin$
# 内置文本编辑器参数: 是否自动换行
textEditorLineWrappingEnabled: true
# 工具栏
toolbar:
# 是否开启工具栏
enableToolbar: true
# 显示键盘 icon 按钮
displayAppIconButton: false
# 显示键盘 dismiss 按钮
displayKeyboardDismissButton: true
# 工具栏总高度
heightOfToolbar: 45
# 拼写区高度(剩余高度由候选文字占用)
heightOfCodingArea: 10
# 拼写区字体大小
codingAreaFontSize: 12
# 候选文字索引字体大小
candidateLabelFontSize: 12
# 候选文字字体大小
candidateTextFontSize: 20
# 候选文字备注信息字体大小。
# 对应 rime 候选字的 comment 信息
candidateCommentFontSize: 12
# 是否显示候选文字索引
displayIndexOfCandidate: false
# 是否显示候选文字 Comment 信息
displayCommentOfCandidate: true
# 划动分页开关,默认为 true,
# 关闭后为手动分页模式,即通过发送上一页/下一页按键,使 rime 翻页
swipePaging: true
# 键盘相关配置
keyboard:
# 使用键盘类型:
# chinese: 中文26键
# chineseNineGrid: 中文九宫格
# 自定义键盘填写自定义键盘配置中的 name 的值。如: `useKeyboardType: 大千注音`
useKeyboardType: gulu_26
# 关闭划动文本显示
disableSwipeLabel: true
# 上下显示划动文本不规则布局
swipeLabelUpAndDownIrregularLayout: false
# 上下显示划动文本规则布局
swipeLabelUpAndDownLayout: true
# 上划显示到左侧
upSwipeOnLeft: true
# 显示按键气泡
displayButtonBubbles: false
# 启用按键声
enableKeySounds: false
# 启用触控反馈
enableHapticFeedback: true
# 反馈强度
hapticFeedbackIntensity: 2
# 启用分号按键
displaySemicolonButton: false
# 启用分类符号按键
displayClassifySymbolButton: false
# 启用空格左侧按键
displaySpaceLeftButton: false
# 空格左侧按键是否经过Rime
spaceLeftButtonProcessByRIME: true
# 空格左侧按键
keyValueOfSpaceLeftButton: ","
# 启用空格右侧按键
displaySpaceRightButton: false
# 空格右侧按键是否经过Rime
spaceRightButtonProcessByRIME: true
# 空格右侧按键
keyValueOfSpaceRightButton: "."
# 启用中英切换按键
displayChineseEnglishSwitchButton: true
# 按键位于空格左侧
chineseEnglishSwitchButtonIsOnLeftOfSpaceButton: false
# 启用数字九宫格键盘
enableNineGridOfNumericKeyboard: true
# 数字九宫格键盘:数字键是否由 RIME 处理
numberKeyProcessByRimeOnNineGridOfNumericKeyboard: false
# 数字九宫格键盘:左侧符号列表符号是否由 RIME 处理
leftSymbolProcessByRimeOnNineGridOfNumericKeyboard: false
# 数字九宫格键盘:键盘右侧符号是否由 RIME 处理
rightSymbolProcessByRimeOnNineGridOfNumericKeyboard: false
# 九宫格键盘左侧符号
symbolsOfGridOfNumericKeyboard:
- +
- "-"
- "×"
- "÷"
# Shift状态锁定
lockShiftState: false
# 启动内嵌模式
enableEmbeddedInputMode: true
# 单手键盘宽度
widthOfOneHandedKeyboard: 80
# 设置符号光标居中
symbolsOfCursorBack:
- '「」'
- "《》"
- "[]"
- "{}"
- "<>"
- "()"
- "()"
# 返回主键盘的符号
symbolsOfReturnToMainKeyboard:
- ","
- "。"
- "!"
# 九宫格键盘符号
symbolsOfChineseNineGridKeyboard:
- ","
- "。"
- "?"
- "!"
- "…"
- "~"
- "'"
- "、"
# 成对上屏的符号
pairsOfSymbols:
- '「」'
- "《》"
- "[]"
- "{}"
- "<>"
- "()"
- "()"
# 启用分类符号键盘
enableSymbolKeyboard: false
# 符号键盘锁定
lockForSymbolKeyboard: false
# 是否启用空格加载文本
enableLoadingTextForSpaceButton: true
# 空格按钮加载文本
loadingTextForSpaceButton: " "
# 空格按钮长显文本
labelTextForSpaceButton: " "
# 空格按钮长显为当前输入方案
# 当开启此选项后,labelForSpaceButton 设置的值无效
showCurrentInputSchemaNameForSpaceButton: false
# 空格按钮加载文字显示当前输入方案
# 当开启此选项后, loadingTextForSpaceButton 设置的值无效
showCurrentInputSchemaNameOnLoadingTextForSpaceButton: false
# 是否启用配色方案
enableColorSchema: true
# 浅色模式下配色
useColorSchemaForLight: "wechat_light"
# 暗色模式下配色
useColorSchemaForDark: "wechat_dark"
# 中文26键显示大写字符
showUppercasedCharacterOnChineseKeyboard: false
# 按键下方边框
enableButtonUnderBorder: true
# 配色方案
# 来源: https://gist.github.com/laloe74/c0c2b481abb7f0f272a1b0c86cf67dc0
colorSchemas:
- schemaName: wechat_light
name: 微信键盘浅色
author: 古罗
back_color: "0x1ED8D3D0"
button_back_color: "0xFEFCFC"
button_pressed_back_color: "0xEBEBEB"
button_bubble_back_color: "0xD0D0D0"
button_foreground_color: "0x000000"
button_pressed_foreground_color: "0x000000"
button_swipe_foreground_color: "0x000000"
button_swipe_pressed_foreground_color: "0x000000"
corner_radius: 8
border_color: "0x01000000"
text_color: "0x444444"
lower_edge_color: "0x000000"
shadow_color: "0x000000"
shadow_size: 0
hilited_candidate_back_color: "0xFBFAF9"
hilited_candidate_text_color: "0x66AC18"
hilited_candidate_label_color: "0x66AC18"
hilited_comment_text_color: "0x66AC18"
candidate_text_color: "0x424242"
comment_text_color: "0x999999"
label_color: "0x000000"
hilited_callout_back_color: "0xFBFAF9"
hilited_callout_foreground_color: "0x66AC18"
- schemaName: wechat_dark
name: 微信键盘深色
author: 古罗
back_color: "0x1E2C2C2C"
button_back_color: "0x656565"
button_pressed_back_color: "0x707070"
button_bubble_back_color: "0xD0D0D0"
button_foreground_color: "0xFDFDFD"
button_pressed_foreground_color: "0xFFFFFF"
button_swipe_foreground_color: "0xFFFFFF"
button_swipe_pressed_foreground_color: "0x000000"
corner_radius: 8
border_color: "0x01000000"
text_color: "0x7A7A7A"
lower_edge_color: "0x000000"
shadow_color: "0x000000"
shadow_size: 0
hilited_candidate_back_color: "0x676767"
hilited_candidate_text_color: "0x8EE600"
hilited_candidate_label_color: "0x8EE600"
hilited_comment_text_color: "0x8EE600"
candidate_text_color: "0xFEFEFE"
comment_text_color: "0xAEAEAE"
label_color: "0xFEFEFE"
hilited_callout_back_color: "0x676767"
hilited_callout_foreground_color: "0x8EE600"
# RIME 引擎相关配置
rime:
# 最大候选数量
maximumNumberOfCandidate: 100
# 简繁切换
switchSimplifiedOrTraditionalOption: traditionalization
# RIME 重新部署时,是否覆盖词库文件
# 如果使用自造词,需要改为 false, 否则部署时会覆盖键盘自造词文件
overrideDictFiles: false
# 覆盖词库文件的正则表达式
# 使用场景:
# 在开启 overrideDictFiles 后,每次重新部署会按照正则表达式符合的条件翻盖文件
regexOnOverrideDictFiles:
- "^.*[.]userdb.*$"
- "^.*[.]txt$"
# 拷贝键盘文件至应用沙盒目录的正则表达式,只会拷贝并覆盖符合表达式的文件。
# 正则表达式为空时,则使用默认值 ["^.*[.]userdb.*$", "^.*[.]txt$"]
# 使用场景:在文件管理功能中,拷贝键盘词库文件至应用
regexOnCopyAppGroupDictFile:
- "^.*[.]userdb.*$"
- "^.*[.]txt$"
# 划动相关配置
swipe:
# 指空格移动多个 point,光标移动一位。所以数字越小越灵敏
spaceDragSensitivity: 15
# 划动距离阈值,当划动的距离大于或等于此值时,才会识别为一次划动
distanceThreshold: 40
# 此值是正切角度的阈值,用来限制上下左右划动时的角度,如果太大容易误触
# 默认为 15 度的正切值,即上下左右划的的角度不能超过 15 度
# tan(10º) ≈ 0.176, tan(15º) ≈ 0.268, tan(30º) ≈ 0.577, tan(45º) = 1, tan(60º) ≈ 1.732
tangentThreshold: 0.577
# 长按延迟时间,只要大于或等于此阈值,才会触发长按 Action,如空格划动
longPressDelay: 0.3
# 自带键盘引入,hamster_swipe 为键盘文件名称
keyboardSwipe:
__include: hamster_swipe:/keyboardSwipe
# 自定义键盘布局
# 布局文档说明文档:https://github.com/imfuxiao/Hamster/wiki
# 在线自定义工具:https://lost-melody.github.io/hamster-tools/
customKeyStyles:
abc_dark: &a2
name: abc_dark
buttonBackgroundColor: "0x656565"
pressedButtonBackgroundColor: "0x929292"
buttonForegroundColor: "0xFCFCFC"
pressedButtonForegroundColor: "0xFCFCFC"
swipeForegroundColor: "0xFCFCFC"
pressedSwipeForegroundColor: "0xFCFCFC"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 1
borderColor: "0x01000000"
lowerEdgeColor: "0x01000000"
shadowColor: "0x01000000"
shadowSize: 0
fontSize: 24
abc_light: &a1
name: abc_light
buttonBackgroundColor: "0xFEFCFC"
pressedButtonBackgroundColor: "0xEBEBEB"
buttonForegroundColor: "0x000000"
pressedButtonForegroundColor: "0x000000"
swipeForegroundColor: "0x000000"
pressedSwipeForegroundColor: "0x000000"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 1
borderColor: "0x01000000"
lowerEdgeColor: "0x5A000000"
shadowColor: "0x000000"
shadowSize: 0
fontSize: 24
enter_dark: &a10
name: enter_dark
buttonBackgroundColor: "0x75B100"
pressedButtonBackgroundColor: "0x656565"
buttonForegroundColor: "0xFFFFFF"
pressedButtonForegroundColor: "0xFFFFFF"
swipeForegroundColor: "0xFFFFFF"
pressedSwipeForegroundColor: "0xFFFFFF"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0x5F000000"
shadowColor: "0x000000"
shadowSize: 0
enter_light: &a9
name: enter_light
buttonBackgroundColor: "0x75B100"
pressedButtonBackgroundColor: "0xFEFCFC"
buttonForegroundColor: "0xDCFFFFFF"
pressedButtonForegroundColor: "0x000000"
swipeForegroundColor: "0x000000"
pressedSwipeForegroundColor: "0x000000"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0x5F000000"
shadowColor: "0x000000"
shadowSize: 0
number_dark: &a8
name: number_dark
buttonBackgroundColor: "0x656565"
pressedButtonBackgroundColor: "0x707070"
buttonForegroundColor: "0xFFFFFF"
pressedButtonForegroundColor: "0xFFFFFF"
swipeForegroundColor: "0xFFFFFF"
pressedSwipeForegroundColor: "0xFFFFFF"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 8
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0xB9000000"
shadowColor: "0x000000"
shadowSize: 0
number_light: &a7
name: number_light
buttonBackgroundColor: "0xFEFCFC"
pressedButtonBackgroundColor: "0xEBEBEB"
buttonForegroundColor: "0x000000"
pressedButtonForegroundColor: "0x000000"
swipeForegroundColor: "0x000000"
pressedSwipeForegroundColor: "0x000000"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 8
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0x3C000000"
shadowColor: "0x000000"
shadowSize: 0
fontSize: 19
number_other_dark: &a12
name: number_other_dark
buttonBackgroundColor: "0x656565"
pressedButtonBackgroundColor: "0x707070"
buttonForegroundColor: "0xFFFFFF"
pressedButtonForegroundColor: "0xFFFFFF"
swipeForegroundColor: "0xFFFFFF"
pressedSwipeForegroundColor: "0xFFFFFF"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 8
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0xB9000000"
shadowColor: "0x000000"
shadowSize: 0
fontSize: 14
number_other_light: &a11
name: number_other_light
buttonBackgroundColor: "0xFEFCFC"
pressedButtonBackgroundColor: "0xEBEBEB"
buttonForegroundColor: "0x000000"
pressedButtonForegroundColor: "0x000000"
swipeForegroundColor: "0x000000"
pressedSwipeForegroundColor: "0x000000"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 8
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0x3C000000"
shadowColor: "0x000000"
shadowSize: 0
fontSize: 14
other_dark: &a4
name: other_dark
buttonBackgroundColor: "0x3C3C3C"
pressedButtonBackgroundColor: "0x656565"
buttonForegroundColor: "0xFFFFFF"
pressedButtonForegroundColor: "0xFFFFFF"
swipeForegroundColor: "0xFFFFFF"
pressedSwipeForegroundColor: "0xFFFFFF"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0x5F000000"
shadowColor: "0x000000"
shadowSize: 0
other_light: &a3
name: other_light
buttonBackgroundColor: "0xC4BCB7"
pressedButtonBackgroundColor: "0xFEFCFC"
buttonForegroundColor: "0xDC000000"
pressedButtonForegroundColor: "0x000000"
swipeForegroundColor: "0x000000"
pressedSwipeForegroundColor: "0x000000"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 0
borderColor: "0x000000"
lowerEdgeColor: "0x5F000000"
shadowColor: "0x000000"
shadowSize: 0
space_dark: &a6
name: space_dark
buttonBackgroundColor: "0x656565"
pressedButtonBackgroundColor: "0x3C3C3C"
buttonForegroundColor: "0x000000"
pressedButtonForegroundColor: "0x000000"
swipeForegroundColor: "0x000000"
pressedSwipeForegroundColor: "0x000000"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 1
borderColor: "0x01000000"
lowerEdgeColor: "0x5A000000"
shadowColor: "0x000000"
shadowSize: 0
fontSize: 18
space_light: &a5
name: space_light
buttonBackgroundColor: "0xFEFCFC"
pressedButtonBackgroundColor: "0xC3BBB6"
buttonForegroundColor: "0x000000"
pressedButtonForegroundColor: "0x000000"
swipeForegroundColor: "0x000000"
pressedSwipeForegroundColor: "0x000000"
buttonBubbleBackColor: "0xD0D0D0"
cornerRadius: 6
borderSize: 1
borderColor: "0x01000000"
lowerEdgeColor: "0x5A000000"
shadowColor: "0x000000"
shadowSize: 0
fontSize: 18
keyboards:
- name: gulu_26
isPrimary: true
rows:
- keys:
- action:
character:
char: q
width: available
swipe:
- action:
symbol:
char: "1"
label: "1"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "!"
label: "!"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: w
width: available
swipe:
- action:
symbol:
char: "2"
label: "2"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "@"
label: "@"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: e
width: available
swipe:
- action:
symbol:
char: "3"
label: "3"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "#"
label: "#"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: r
width: available
swipe:
- action:
symbol:
char: "4"
label: "4"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: $
label: $
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: t
width: available
swipe:
- action:
symbol:
char: "5"
label: "5"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "%"
label: "%"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: y
width: available
swipe:
- action:
symbol:
char: "6"
label: "6"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: ^
label: ^
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: u
width: available
swipe:
- action:
symbol:
char: "7"
label: "7"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "&"
label: "&"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: i
width: available
swipe:
- action:
symbol:
char: "8"
label: "8"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "'"
label: "'"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: o
width: available
swipe:
- action:
symbol:
char: "9"
label: "9"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: ": "
label: ":"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: p
width: available
swipe:
- action:
symbol:
char: "0"
label: "0"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: (
label: (
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- keys:
- action: none
width:
percentage: 0.05
- action:
character:
char: a
width: available
swipe:
- action:
symbol:
char: "`"
label: "`"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "~"
label: "~"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: s
width: available
swipe:
- action:
symbol:
char: "-"
label: "-"
display: true
processByRIME: true
direction: up
- action:
symbol:
char: _
label: _
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: d
width: available
swipe:
- action:
symbol:
char: =
label: =
display: true
processByRIME: true
direction: up
- action:
symbol:
char: +
label: +
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: f
width: available
swipe:
- action:
symbol:
char: ×
label: ×
display: true
processByRIME: true
direction: up
- action:
symbol:
char: ÷
label: ÷
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: g
width: available
swipe:
- action:
symbol:
char: "—— "
label: ——
display: true
processByRIME: true
direction: up
- action:
symbol:
char: "|"
label: "|"
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: h
width: available
swipe:
- action:
symbol:
char: :
label: :
display: true
processByRIME: true
direction: up
- action:
symbol:
char: ;
label: ;
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: j
width: available
swipe:
- action:
symbol:
char: ?
label: ?
display: true
processByRIME: true
direction: up
- action:
symbol:
char: /
label: /
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: k
width: available
swipe:
- action:
symbol:
char: !
label: !
display: true
processByRIME: true
direction: up
- action:
symbol:
char: ……
label: ……
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: l
width: available
swipe:
- action:
symbol:
char: 、
label: 、
display: true
processByRIME: true
direction: up
- action:
symbol:
char: \
label: \
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action: none
width:
percentage: 0.05
- keys:
- action: shift
width:
percentage: 0.13
lightModeStyle: *a3
darkModeStyle: *a4
- action: none
width:
percentage: 0.02
- action:
character:
char: z
width: available
swipe:
- action:
symbol:
char: <
label: <
display: true
processByRIME: true
direction: up
- action:
symbol:
char: .com
label: .com
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: x
width: available
swipe:
- action:
symbol:
char: "{"
label: "{"
display: true
processByRIME: true
direction: up
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: c
width: available
swipe:
- action:
symbol:
char: (
label: (
display: true
processByRIME: true
direction: up
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: v
width: available
swipe:
- action:
symbol:
char: 《
label: 《
display: true
processByRIME: true
direction: up
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: b
width: available
swipe:
- action:
symbol:
char: 「
label: 「
display: true
processByRIME: true
direction: up
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: n
width: available
swipe:
- action:
symbol:
char: ,
label: ,
display: true
processByRIME: true
direction: up
- action:
symbol:
char: ", "
label: ","
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action:
character:
char: m
width: available
swipe:
- action:
symbol:
char: 。
label: 。
display: true
processByRIME: true
direction: up
- action:
symbol:
char: ". "
label: .
display: true
processByRIME: true
direction: down
lightModeStyle: *a1
darkModeStyle: *a2
- action: none
width:
percentage: 0.02
- action: backspace
width:
percentage: 0.13
lightModeStyle: *a3