wayland: mucho wip: initial sort-of-working wayland backend

Bar is drawn, though only TOP is supported atm. No
screen/display/output selection is possible yet. Mouse *click* works,
but not setting the cursor.

Lots of debug output, crappy code yada yada.
This commit is contained in:
Daniel Eklöf 2019-02-03 11:08:53 +01:00
parent ff88d87ca8
commit ed8e17c6c9
5 changed files with 658 additions and 10 deletions

2
main.c
View file

@ -46,7 +46,7 @@ get_config_path(void)
path_max = 1024;
char *path = malloc(path_max + 1);
snprintf(path, path_max + 1, "%s/.config/f00bar/config.yml", home_dir);
snprintf(path, path_max + 1, "%s/.config/f00bar/config-wayland.yml", home_dir);
return path;
}