/** * I3cstat prints a configurable status bar for the i3 window manager * Copyright (C) 2022 Aaron Ball * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef CONFIG_TIME #define CONFIG_TIME #define CTYPE_TIME 30 #include #include #include #include #include #include "common.h" #include "config_node.h" struct config_time { char tz[256]; char fmt[128]; char locale[64]; }; void config_time_init(struct node*); void load_time_key(struct node*, char*, char*); int config_time_load(struct node*); #endif