* Only select fonts for the default built in status screen * Leverage theme default fonts, instead of hardcoding theme details in each component.
30 lines
805 B
Text
30 lines
805 B
Text
# Copyright (c) 2020 The ZMK Contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
menu "ZMK Display Widgets"
|
|
|
|
config ZMK_WIDGET_LAYER_STATUS
|
|
bool "Widget for highest, active layer using small icons"
|
|
default y
|
|
depends on !ZMK_SPLIT || ZMK_SPLIT_BLE_ROLE_CENTRAL
|
|
select LVGL_USE_LABEL
|
|
|
|
config ZMK_WIDGET_BATTERY_STATUS
|
|
bool "Widget for battery charge information, using small icons"
|
|
depends on BT
|
|
default y if BT
|
|
select LVGL_USE_LABEL
|
|
|
|
config ZMK_WIDGET_OUTPUT_STATUS
|
|
bool "Widget for keyboard output status icons"
|
|
depends on BT
|
|
default y if BT
|
|
select LVGL_USE_LABEL
|
|
|
|
config ZMK_WIDGET_WPM_STATUS
|
|
bool "Widget for displaying typed words per minute"
|
|
depends on !ZMK_SPLIT || ZMK_SPLIT_BLE_ROLE_CENTRAL
|
|
select LVGL_USE_LABEL
|
|
select ZMK_WPM
|
|
|
|
endmenu
|