fix(displays): Don't enable built-in widget configs by default
This commit is contained in:
parent
18a2b76bf0
commit
51a4be8935
2 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,6 @@ menuconfig ZMK_DISPLAY
|
||||||
select DISPLAY
|
select DISPLAY
|
||||||
select LVGL
|
select LVGL
|
||||||
select LV_CONF_MINIMAL
|
select LV_CONF_MINIMAL
|
||||||
imply LV_USE_THEME_MONO
|
|
||||||
|
|
||||||
if ZMK_DISPLAY
|
if ZMK_DISPLAY
|
||||||
|
|
||||||
|
@ -42,6 +41,11 @@ choice ZMK_DISPLAY_STATUS_SCREEN
|
||||||
config ZMK_DISPLAY_STATUS_SCREEN_BUILT_IN
|
config ZMK_DISPLAY_STATUS_SCREEN_BUILT_IN
|
||||||
bool "Built in status screen"
|
bool "Built in status screen"
|
||||||
select LV_OBJ_LABEL
|
select LV_OBJ_LABEL
|
||||||
|
imply LV_USE_THEME_MONO
|
||||||
|
imply ZMK_WIDGET_LAYER_STATUS
|
||||||
|
imply ZMK_WIDGET_BATTERY_STATUS
|
||||||
|
imply ZMK_WIDGET_OUTPUT_STATUS
|
||||||
|
imply ZMK_WIDGET_PERIPHERAL_STATUS
|
||||||
|
|
||||||
config ZMK_DISPLAY_STATUS_SCREEN_CUSTOM
|
config ZMK_DISPLAY_STATUS_SCREEN_CUSTOM
|
||||||
bool "Custom status screen"
|
bool "Custom status screen"
|
||||||
|
|
|
@ -5,14 +5,12 @@ menu "ZMK Display Widgets"
|
||||||
|
|
||||||
config ZMK_WIDGET_LAYER_STATUS
|
config ZMK_WIDGET_LAYER_STATUS
|
||||||
bool "Widget for highest, active layer using small icons"
|
bool "Widget for highest, active layer using small icons"
|
||||||
default y
|
|
||||||
depends on !ZMK_SPLIT || ZMK_SPLIT_ROLE_CENTRAL
|
depends on !ZMK_SPLIT || ZMK_SPLIT_ROLE_CENTRAL
|
||||||
select LV_USE_LABEL
|
select LV_USE_LABEL
|
||||||
|
|
||||||
config ZMK_WIDGET_BATTERY_STATUS
|
config ZMK_WIDGET_BATTERY_STATUS
|
||||||
bool "Widget for battery charge information, using small icons"
|
bool "Widget for battery charge information, using small icons"
|
||||||
depends on BT
|
depends on BT
|
||||||
default y if BT
|
|
||||||
select LV_USE_LABEL
|
select LV_USE_LABEL
|
||||||
|
|
||||||
if ZMK_WIDGET_BATTERY_STATUS
|
if ZMK_WIDGET_BATTERY_STATUS
|
||||||
|
@ -25,13 +23,11 @@ endif
|
||||||
config ZMK_WIDGET_OUTPUT_STATUS
|
config ZMK_WIDGET_OUTPUT_STATUS
|
||||||
bool "Widget for keyboard output status icons"
|
bool "Widget for keyboard output status icons"
|
||||||
depends on BT && (!ZMK_SPLIT_BLE || ZMK_SPLIT_ROLE_CENTRAL)
|
depends on BT && (!ZMK_SPLIT_BLE || ZMK_SPLIT_ROLE_CENTRAL)
|
||||||
default y if BT && (!ZMK_SPLIT_BLE || ZMK_SPLIT_ROLE_CENTRAL)
|
|
||||||
select LV_USE_LABEL
|
select LV_USE_LABEL
|
||||||
|
|
||||||
config ZMK_WIDGET_PERIPHERAL_STATUS
|
config ZMK_WIDGET_PERIPHERAL_STATUS
|
||||||
bool "Widget for split peripheral status icons"
|
bool "Widget for split peripheral status icons"
|
||||||
depends on BT && ZMK_SPLIT_BLE && !ZMK_SPLIT_ROLE_CENTRAL
|
depends on BT && ZMK_SPLIT_BLE && !ZMK_SPLIT_ROLE_CENTRAL
|
||||||
default y if BT && ZMK_SPLIT_BLE && !ZMK_SPLIT_ROLE_CENTRAL
|
|
||||||
select LV_USE_LABEL
|
select LV_USE_LABEL
|
||||||
|
|
||||||
config ZMK_WIDGET_WPM_STATUS
|
config ZMK_WIDGET_WPM_STATUS
|
||||||
|
|
Loading…
Add table
Reference in a new issue