Skip to content

Commit 51a4be8

Browse files
Nicellpetejohanson
authored andcommitted
fix(displays): Don't enable built-in widget configs by default
1 parent 18a2b76 commit 51a4be8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/src/display/Kconfig

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ menuconfig ZMK_DISPLAY
77
select DISPLAY
88
select LVGL
99
select LV_CONF_MINIMAL
10-
imply LV_USE_THEME_MONO
1110

1211
if ZMK_DISPLAY
1312

@@ -42,6 +41,11 @@ choice ZMK_DISPLAY_STATUS_SCREEN
4241
config ZMK_DISPLAY_STATUS_SCREEN_BUILT_IN
4342
bool "Built in status screen"
4443
select LV_OBJ_LABEL
44+
imply LV_USE_THEME_MONO
45+
imply ZMK_WIDGET_LAYER_STATUS
46+
imply ZMK_WIDGET_BATTERY_STATUS
47+
imply ZMK_WIDGET_OUTPUT_STATUS
48+
imply ZMK_WIDGET_PERIPHERAL_STATUS
4549

4650
config ZMK_DISPLAY_STATUS_SCREEN_CUSTOM
4751
bool "Custom status screen"

app/src/display/widgets/Kconfig

-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@ menu "ZMK Display Widgets"
55

66
config ZMK_WIDGET_LAYER_STATUS
77
bool "Widget for highest, active layer using small icons"
8-
default y
98
depends on !ZMK_SPLIT || ZMK_SPLIT_ROLE_CENTRAL
109
select LV_USE_LABEL
1110

1211
config ZMK_WIDGET_BATTERY_STATUS
1312
bool "Widget for battery charge information, using small icons"
1413
depends on BT
15-
default y if BT
1614
select LV_USE_LABEL
1715

1816
if ZMK_WIDGET_BATTERY_STATUS
@@ -25,13 +23,11 @@ endif
2523
config ZMK_WIDGET_OUTPUT_STATUS
2624
bool "Widget for keyboard output status icons"
2725
depends on BT && (!ZMK_SPLIT_BLE || ZMK_SPLIT_ROLE_CENTRAL)
28-
default y if BT && (!ZMK_SPLIT_BLE || ZMK_SPLIT_ROLE_CENTRAL)
2926
select LV_USE_LABEL
3027

3128
config ZMK_WIDGET_PERIPHERAL_STATUS
3229
bool "Widget for split peripheral status icons"
3330
depends on BT && ZMK_SPLIT_BLE && !ZMK_SPLIT_ROLE_CENTRAL
34-
default y if BT && ZMK_SPLIT_BLE && !ZMK_SPLIT_ROLE_CENTRAL
3531
select LV_USE_LABEL
3632

3733
config ZMK_WIDGET_WPM_STATUS

0 commit comments

Comments
 (0)