mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
12 lines
260 B
C
12 lines
260 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "common/dir.h"
|
|
|
|
int main()
|
|
{
|
|
setenv("LABWC_DEBUG_DIR_CONFIG_AND_THEME", "1", 1);
|
|
setenv("XDG_CONFIG_HOME", "/a:/bbb:/ccccc:/etc/foo", 1);
|
|
printf("%s\n", config_dir());
|
|
printf("%s\n", theme_dir("Numix"));
|
|
}
|