Files
absinthe/include/config.h
T

21 lines
468 B
C
Raw Normal View History

#ifndef __CONFIG_H_
#define __CONFIG_H_
2026-04-04 16:42:55 +07:00
#define CURSOR_MOD WLR_MODIFIER_ALT
#define CURSOR_MOVE_BUTTON BTN_LEFT
#define CURSOR_RESIZE_BUTTON BTN_RIGHT
2026-04-04 16:42:55 +07:00
2026-05-04 12:40:06 +07:00
#define TOPLEVEL_BW 1
2026-04-04 16:42:55 +07:00
2026-05-04 12:40:06 +07:00
static const float focused_bc[4] = { 0.0, 0.0, 1.0, 1.0 };
static const float urgent_bc[4] = { 1.0, 0.0, 0.0, 1.0 };
static const float unfocused_bc[4] = { 0.28, 0.28, 0.28, 1.0 };
2026-04-04 16:42:55 +07:00
#define MSTACK_SIZE 1
#define MSTACK_WIDTH 0.5
2026-04-04 16:42:55 +07:00
#define OUTPUT_GAP 0
#define LAYOUT_GAP 0
2026-05-04 12:40:06 +07:00
#endif