2021-11-13 21:56:53 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2023-05-13 16:10:33 +03:00
|
|
|
#ifndef LABWC_DIR_H
|
|
|
|
|
#define LABWC_DIR_H
|
2020-08-10 17:24:17 +01:00
|
|
|
|
|
|
|
|
char *config_dir(void);
|
2024-01-08 10:39:03 +00:00
|
|
|
char *user_config_dir(void);
|
|
|
|
|
char *sys_config_dir(void);
|
2020-07-13 20:09:34 +01:00
|
|
|
|
2020-08-07 20:21:14 +01:00
|
|
|
/**
|
|
|
|
|
* theme_dir - find theme directory containing theme @theme_name
|
|
|
|
|
* @theme_name: theme to search for
|
|
|
|
|
*/
|
2020-07-13 20:09:34 +01:00
|
|
|
char *theme_dir(const char *theme_name);
|
|
|
|
|
|
2023-05-13 16:10:33 +03:00
|
|
|
#endif /* LABWC_DIR_H */
|