diff options
author | joe <rbo@gmx.us> | 2025-09-29 17:24:54 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-29 17:24:54 +0200 |
commit | 09d2f68e3f2d6ed0e8333ac920385bc373b33816 (patch) | |
tree | eaa3efeb61896f2e5e2740f0d96ad944e4b0d5af /config.def.h | |
download | herbe-09d2f68e3f2d6ed0e8333ac920385bc373b33816.tar.gz herbe-09d2f68e3f2d6ed0e8333ac920385bc373b33816.tar.bz2 herbe-09d2f68e3f2d6ed0e8333ac920385bc373b33816.tar.xz herbe-09d2f68e3f2d6ed0e8333ac920385bc373b33816.tar.zst herbe-09d2f68e3f2d6ed0e8333ac920385bc373b33816.zip |
config
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h new file mode 100644 index 0000000..7d83bc3 --- /dev/null +++ b/config.def.h @@ -0,0 +1,20 @@ +static const char *background_color = "#3e3e3e"; +static const char *border_color = "#ececec"; +static const char *font_color = "#ececec"; +static const char *font_pattern = "monospace:size=10"; +static const unsigned line_spacing = 5; +static const unsigned int padding = 15; +static const int use_primary_monitor = 1; + +static const unsigned int width = 450; +static const unsigned int border_size = 2; +static const unsigned int pos_x = 30; +static const unsigned int pos_y = 60; + +enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT }; +enum corners corner = TOP_RIGHT; + +static const unsigned int duration = 5; /* in seconds */ + +#define DISMISS_BUTTON Button1 +#define ACTION_BUTTON Button3 |