mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-01 06:20:17 +01:00
9 lines
252 B
C
9 lines
252 B
C
#include <stdlib.h>
|
|
#include "sway/commands.h"
|
|
#include "log.h"
|
|
|
|
struct cmd_results *bar_cmd_context_button(int argc, char **argv) {
|
|
const char *cmd_name = "context_button";
|
|
// TODO TRAY
|
|
return cmd_results_new(CMD_INVALID, cmd_name, "TODO TRAY");
|
|
}
|