10 lines
291 B
C
10 lines
291 B
C
#include "config.h"
|
||
|
||
#include <stdint.h>
|
||
#include <stdio.h>
|
||
|
||
/* 壁纸列表,支持通配符和 shell 环境变量拼接,最后以 NULL 结尾 */
|
||
const char *wallpager_list[] = {NULL};
|
||
/* 壁纸切换间隔(单位:秒),0 表示不切换 */
|
||
const uint32_t wallpaper_interval = 0;
|