swayfx/sway/commands/bar/icon_theme.c

9 lines
219 B
C
Raw Normal View History

2018-03-30 08:20:03 +11:00
#define _XOPEN_SOURCE 500
#include <string.h>
#include "sway/commands.h"
struct cmd_results *bar_cmd_icon_theme(int argc, char **argv) {
// TODO TRAY
2018-03-30 13:05:16 +11:00
return cmd_results_new(CMD_INVALID, "icon_theme", "TODO TRAY");
2018-03-30 08:20:03 +11:00
}