diff options
| author | Juan de la Puente <softwaredelapuente@gmail.com> | 2025-12-10 18:24:42 +0100 |
|---|---|---|
| committer | Juan de la Puente <softwaredelapuente@gmail.com> | 2025-12-10 18:24:42 +0100 |
| commit | dbcbae55486d8502bed458ba5320b6f8e2a0941f (patch) | |
| tree | a8894220051143bec260c97a88a2b1bf306e5b2f /config.def.h | |
parte 1.0
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h new file mode 100644 index 0000000..f33f66d --- /dev/null +++ b/config.def.h @@ -0,0 +1,39 @@ +#include <stdint.h> +#include <stddef.h> + +size_t PADDING_X = 25; +size_t PADDING_Y = 25; +size_t PADDING_TEXT_X = 10; +size_t PADDING_TEXT_Y = 10; +char *FONT = "monospace:size=12"; + + +enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT}; +#define CORNER TOP_RIGHT +enum focus_monitor { FOCUS_MOUSE, FOCUS_KEYBOARD }; +#define FOCUS_MONITOR FOCUS_MOUSE + +/* options for normal normal urgency */ +char *NORMAL_FONT_COLOR = "#ABB2BF"; +char *NORMAL_BACKGROUND = "#282C34"; +char *NORMAL_BORDER = "#61AFEF"; +size_t NORMAL_BORDER_SIZE = 3; +size_t NORMAL_TIME = 5; + + + +/* options for normal low urgency */ +char *LOW_FONT_COLOR = "#FFFFFF"; +char *LOW_BACKGROUND = "grey20"; +char *LOW_BORDER = "grey"; +size_t LOW_BORDER_SIZE = 3; +size_t LOW_TIME = 2; + + + +/* options for normal urgent urgency */ +char *URGENT_FONT_COLOR = "#FFFFFF"; +char *URGENT_BACKGROUND = "#FF5555"; +char *URGENT_BORDER = "#FF8800"; +size_t URGENT_BORDER_SIZE = 3; +size_t URGENT_TIME = 10; |
