47 lines
1.2 KiB
Text
47 lines
1.2 KiB
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"
|
|
depends on !ZMK_SPLIT || ZMK_SPLIT_ROLE_CENTRAL
|
|
select LV_USE_LABEL
|
|
|
|
config ZMK_WIDGET_BATTERY_STATUS
|
|
bool "Widget for battery charge information, using small icons"
|
|
depends on BT
|
|
select LV_USE_LABEL
|
|
|
|
if ZMK_WIDGET_BATTERY_STATUS
|
|
|
|
config ZMK_WIDGET_BATTERY_STATUS_SHOW_PERCENTAGE
|
|
bool "Show battery level percentage in text"
|
|
|
|
endif
|
|
|
|
config ZMK_WIDGET_OUTPUT_STATUS
|
|
bool "Widget for keyboard output status icons"
|
|
depends on BT && (!ZMK_SPLIT_BLE || ZMK_SPLIT_ROLE_CENTRAL)
|
|
select LV_USE_LABEL
|
|
|
|
config ZMK_WIDGET_PERIPHERAL_STATUS
|
|
bool "Widget for split peripheral status icons"
|
|
depends on BT && ZMK_SPLIT_BLE && !ZMK_SPLIT_ROLE_CENTRAL
|
|
select LV_USE_LABEL
|
|
|
|
config ZMK_WIDGET_WPM_STATUS
|
|
bool "Widget for displaying typed words per minute"
|
|
depends on !ZMK_SPLIT || ZMK_SPLIT_ROLE_CENTRAL
|
|
select LV_USE_LABEL
|
|
select ZMK_WPM
|
|
|
|
config ZMK_WIDGET_LABEL
|
|
bool "Widget for displaying custom messages"
|
|
select LV_USE_LABEL
|
|
|
|
config ZMK_WIDGET_LABEL_TEXT
|
|
string "Custom message to display"
|
|
default "ZMK"
|
|
|
|
endmenu
|