all repos — tint2 @ 7e2e1d5adf980e7b6c4d2aa4d7755aae33512342

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/config.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**************************************************************************
* config :
* - parse config file in Panel struct.
*
* Check COPYING file for Copyright
*
**************************************************************************/

#ifndef CONFIG_H
#define CONFIG_H

extern char *config_path;
extern char *snapshot_path;

// default global data
void default_config();

// freed memory
void cleanup_config();

int  config_read_file (const char *path);
int  config_read ();

#endif