summaryrefslogtreecommitdiff
path: root/app/src/display/widgets/Kconfig
blob: f12d99a328fc870984b23f25e2150fee9daf6bb9 (plain)
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
# 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_FONT_MONTSERRAT_12

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
    select LVGL_FONT_MONTSERRAT_16

config ZMK_WIDGET_OUTPUT_STATUS
    bool "Widget for keyboard output status icons"
    depends on BT
    default y if BT
    select LVGL_USE_LABEL
    select LVGL_FONT_MONTSERRAT_16
    
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 LVGL_FONT_MONTSERRAT_16
    select ZMK_WPM

endmenu