diff options
author | ZoRo <dos21h@gmail.com> | 2020-04-05 16:31:20 +0100 |
---|---|---|
committer | ZoRo <dos21h@gmail.com> | 2020-04-05 16:31:20 +0100 |
commit | de58c2e89c6d38ae21e12b83902defa171b0b635 (patch) | |
tree | 632d661b8f3eb686bfd1788e7148044ef1fe8431 /Kconfig | |
download | dwmstatus-pixel-de58c2e89c6d38ae21e12b83902defa171b0b635.tar.gz dwmstatus-pixel-de58c2e89c6d38ae21e12b83902defa171b0b635.zip |
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -0,0 +1,38 @@ +source "debug/Kconfig" +source "status/Kconfig" + +choice + prompt "Formating mode" + help + Choose different formating modes for + + config STATUS_FMT_NONE + bool "No formating" + + config STATUS_FMT_COLOR + bool "Simple escape sequence formating" + + config STATUS_FMT_PANGO + bool "Set formating for pango" + +endchoice + +choice + prompt "ASCII/UTF8" + + config STATUS_ASCII + bool "ASCII text" + + config STATUS_UTF8 + bool "UTF8 icons" + +endchoice + +choice + prompt "Debug" + config DEBUG_NONE + bool "No debug" + config DEBUG_MODE + bool "ASSERT type debuging" +endchoice + |