suckless_dictpopup/config.def.h

18 lines
652 B
C
Raw Normal View History

2023-05-09 10:42:03 +00:00
static const char *background_color = "#2E3440";
static const char *border_color = "#ececec";
static const char *font_color = "#ececec";
2024-02-19 02:30:20 +00:00
static const char *font_pattern = "Noto Sans Mono CJK JP:size=10";
2023-05-09 10:42:03 +00:00
static const unsigned line_spacing = 5;
static const unsigned int padding = 15;
2023-05-28 11:15:50 +00:00
static const unsigned int width = 480;
2023-05-09 10:42:03 +00:00
static const unsigned int border_size = 1;
static const unsigned int duration = 5; /* in seconds */
2023-05-28 11:15:50 +00:00
#define MIN_BORDER_DISTANCE 3 /* The minimum distance to the monitor boundary */
#define DISMISS_BUTTON Button1 /* left click */
#define ACTION1_BUTTON Button4 /* scroll up */
#define ACTION2_BUTTON Button5 /* scroll down */