Progress with multiline/word-wrap support

This commit is contained in:
Samuel Dudik 2020-08-01 12:54:00 +02:00
parent 6a655a7cbd
commit ed9d201bce
3 changed files with 32 additions and 7 deletions

View file

@ -1,10 +1,10 @@
const static char *background_color = "#3e3e3e";
const static char *border_color = "#ececec";
const static char *font_color = "#ececec";
const static char *font_pattern = "Inconsolata:style=Medium:size=15";
const static char *font_pattern = "Inconsolata:style=Medium:size=13";
const static unsigned int padding = 15;
const static unsigned int width = 300;
const static unsigned int width = 200;
const static unsigned int border_size = 2;
const static unsigned int pos_x = 40;
const static unsigned int pos_y = 50;
@ -12,4 +12,4 @@ const static unsigned int pos_y = 50;
enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
enum corners corner = TOP_RIGHT;
const static unsigned int duration = 5; /* in seconds */
const static unsigned int duration = 15; /* in seconds */