aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bar/icon_theme.c
blob: cbfc0be509c55aba464a9d9adb4e5301d0f5ae1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#define _XOPEN_SOURCE 500
#include <string.h>
#include "sway/commands.h"

struct cmd_results *bar_cmd_icon_theme(int argc, char **argv) {
	const char *cmd_name = "tray_output";
#ifndef ENABLE_TRAY
	return cmd_results_new(CMD_INVALID, cmd_name, "Invalid %s command "
			"%s called, but sway was compiled without tray support",
			cmd_name, cmd_name);
#else
	struct cmd_results *error = NULL;
	if ((error = checkarg(argc, cmd_name, EXPECTED_EQUAL_TO, 1))) {
		return error;
	}

	if (!config->current_bar) {
		return cmd_results_new(CMD_FAILURE, cmd_name, "No bar defined.");
	}

	config->current_bar->icon_theme = strdup(argv[0]);

	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
#endif
}