绘制布局标志

This commit is contained in:
2025-12-08 03:25:09 +08:00
parent 42ee022a0e
commit e7447f8aaa
5 changed files with 35 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
#include <stdint.h>
#include "action.h"
#include "types.h"
static const char *const font_family = "monospace";
static const int font_size = 10;
@@ -32,3 +33,8 @@ static const keyboard_t key_list[] = {
{modifier_alt, XK_q, quit, {.b = false}},
{modifier_alt, XK_r, quit, {.b = true}},
};
static const layout_t layout_list[] = {
{.symbol = "[M]", .arrange = nullptr},
{.symbol = "><=", .arrange = nullptr},
};