1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-23 07:27:17 +01:00
sway-patched-tray-menu/sway/commands/bar/icon_theme.c

9 lines
219 B
C
Raw Normal View History

2018-03-29 17:20:03 -04: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-29 22:05:16 -04:00
return cmd_results_new(CMD_INVALID, "icon_theme", "TODO TRAY");
2018-03-29 17:20:03 -04:00
}