aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bar/icon_theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/icon_theme.c')
-rw-r--r--sway/commands/bar/icon_theme.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sway/commands/bar/icon_theme.c b/sway/commands/bar/icon_theme.c
new file mode 100644
index 00000000..c6090b81
--- /dev/null
+++ b/sway/commands/bar/icon_theme.c
@@ -0,0 +1,9 @@
1#define _XOPEN_SOURCE 500
2#include <string.h>
3#include "sway/commands.h"
4
5struct cmd_results *bar_cmd_icon_theme(int argc, char **argv) {
6 const char *cmd_name = "tray_output";
7 // TODO TRAY
8 return cmd_results_new(CMD_INVALID, cmd_name, "TODO TRAY");
9}