diff options
author | Louie Shprung <lshprung@tutanota.com> | 2024-08-13 21:06:03 -0400 |
---|---|---|
committer | Louie Shprung <lshprung@tutanota.com> | 2024-08-13 21:06:03 -0400 |
commit | b5dd0df1808429a3c0ed1f86256962512b8273f5 (patch) | |
tree | 51c145097dfbf3a730bd60cbc6c516962712ee18 /src/include/draw.h | |
parent | 4e68f637300c0e360d49f8f672d0675d42da0d1f (diff) |
Working implementation for lua config
Diffstat (limited to 'src/include/draw.h')
-rw-r--r-- | src/include/draw.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/draw.h b/src/include/draw.h index 387ced3..022abe5 100644 --- a/src/include/draw.h +++ b/src/include/draw.h @@ -5,11 +5,14 @@ #define BUF_LEN 1024 +// currently selected group extern int g_hover; +// array of currently selected entries for each group extern int *e_hover; +// array of groups (as loaded from the config) extern struct group **g; -extern struct entry **e; +// returns the command to run for the current entry char *get_launch(); //functions that differ between os |