aboutsummaryrefslogtreecommitdiff
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.c8
1 files changed, 8 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..44cd3076
--- /dev/null
+++ b/sway/commands/bar/icon_theme.c
@@ -0,0 +1,8 @@
+#define _XOPEN_SOURCE 500
+#include <string.h>
+#include "sway/commands.h"
+
+struct cmd_results *bar_cmd_icon_theme(int argc, char **argv) {
+ // TODO TRAY
+ return cmd_results_new(CMD_INVALID, "icon_theme", "TODO TRAY");
+}