aboutsummaryrefslogtreecommitdiff
path: root/swaynagbar/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaynagbar/main.c')
-rw-r--r--swaynagbar/main.c184
1 files changed, 184 insertions, 0 deletions
diff --git a/swaynagbar/main.c b/swaynagbar/main.c
new file mode 100644
index 00000000..f5ed064e
--- /dev/null
+++ b/swaynagbar/main.c
@@ -0,0 +1,184 @@
+#define _XOPEN_SOURCE 500
+#include <getopt.h>
+#include <signal.h>
+#include "log.h"
+#include "list.h"
+#include "swaynagbar/nagbar.h"
+#include "wlr-layer-shell-unstable-v1-client-protocol.h"
+
+static struct sway_nagbar nagbar;
+
+void sig_handler(int signal) {
+ nagbar_destroy(&nagbar);
+ exit(EXIT_FAILURE);
+}
+
+void sway_terminate(int code) {
+ nagbar_destroy(&nagbar);
+ exit(code);
+}
+
+static void set_nagbar_colors() {
+ if (nagbar.type == NAGBAR_ERROR) {
+ nagbar.colors.button_background = 0x680A0AFF;
+ nagbar.colors.background = 0x900000FF;
+ nagbar.colors.text = 0xFFFFFFFF;
+ nagbar.colors.border = 0xD92424FF;
+ nagbar.colors.border_bottom = 0x470909FF;
+ } else if (nagbar.type == NAGBAR_WARNING) {
+ nagbar.colors.button_background = 0xFFC100FF;
+ nagbar.colors.background = 0xFFA800FF;
+ nagbar.colors.text = 0x000000FF;
+ nagbar.colors.border = 0xAB7100FF;
+ nagbar.colors.border_bottom = 0xAB7100FF;
+ }
+}
+
+int main(int argc, char **argv) {
+ int exit_code = EXIT_SUCCESS;
+ bool debug = false;
+
+ memset(&nagbar, 0, sizeof(nagbar));
+ nagbar.anchors = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP
+ | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT
+ | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
+ nagbar.type = NAGBAR_ERROR;
+ set_nagbar_colors();
+ nagbar.font = strdup("pango:monospace 8");
+ nagbar.buttons = create_list();
+
+ struct sway_nagbar_button *button_close =
+ calloc(sizeof(struct sway_nagbar_button), 1);
+ button_close->text = strdup("X");
+ button_close->action = NULL;
+ list_add(nagbar.buttons, button_close);
+
+ static struct option long_options[] = {
+ {"button", required_argument, NULL, 'b'},
+ {"debug", no_argument, NULL, 'd'},
+ {"edge", required_argument, NULL, 'e'},
+ {"font", required_argument, NULL, 'f'},
+ {"help", no_argument, NULL, 'h'},
+ {"message", required_argument, NULL, 'm'},
+ {"output", required_argument, NULL, 'o'},
+ {"type", required_argument, NULL, 't'},
+ {"version", no_argument, NULL, 'v'},
+ {0, 0, 0, 0}
+ };
+
+ const char *usage =
+ "Usage: swaynagbar [options...]\n"
+ "\n"
+ " -b, --button <text> <action> Create a button with text that "
+ "executes action when pressed. Multiple buttons can be defined.\n"
+ " -d, --debug Enable debugging.\n"
+ " -e, --edge top|bottom Set the edge to use.\n"
+ " -f, --font <font> Set the font to use.\n"
+ " -h, --help Show help message and quit.\n"
+ " -m, --message <msg> Set the message text.\n"
+ " -o, --output <output> Set the output to use.\n"
+ " -t, --type error|warning Set the message type.\n"
+ " -v, --version Show the version number and quit.\n";
+
+ while (1) {
+ int c = getopt_long(argc, argv, "b:de:f:hm:o:t:v", long_options, NULL);
+ if (c == -1) {
+ break;
+ }
+ switch (c) {
+ case 'b': // Button
+ if (optind >= argc) {
+ fprintf(stderr, "Missing action for button %s", optarg);
+ exit_code = EXIT_FAILURE;
+ goto cleanup;
+ }
+ struct sway_nagbar_button *button;
+ button = calloc(sizeof(struct sway_nagbar_button), 1);
+ button->text = strdup(optarg);
+ button->action = strdup(argv[optind]);
+ optind++;
+ list_add(nagbar.buttons, button);
+ break;
+ case 'd': // Debug
+ debug = true;
+ break;
+ case 'e': // Edge
+ if (strcmp(optarg, "top") == 0) {
+ nagbar.anchors = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP
+ | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT
+ | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
+ } else if (strcmp(optarg, "bottom") == 0) {
+ nagbar.anchors = ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM
+ | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT
+ | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
+ } else {
+ fprintf(stderr, "Invalid edge: %s\n", optarg);
+ exit_code = EXIT_FAILURE;
+ goto cleanup;
+ }
+ break;
+ case 'f': // Font
+ free(nagbar.font);
+ nagbar.font = strdup(optarg);
+ break;
+ case 'm': // Message
+ free(nagbar.message);
+ nagbar.message = strdup(optarg);
+ break;
+ case 'o': // Output
+ free(nagbar.output.name);
+ nagbar.output.name = strdup(optarg);
+ break;
+ case 't': // Type
+ if (strcmp(optarg, "error") == 0) {
+ nagbar.type = NAGBAR_ERROR;
+ } else if (strcmp(optarg, "warning") == 0) {
+ nagbar.type = NAGBAR_WARNING;
+ } else {
+ fprintf(stderr, "Type must be either 'error' or 'warning'");
+ exit_code = EXIT_FAILURE;
+ goto cleanup;
+ }
+ set_nagbar_colors();
+ break;
+ case 'v': // Version
+ fprintf(stdout, "sway version " SWAY_VERSION "\n");
+ exit_code = EXIT_SUCCESS;
+ goto cleanup;
+ default: // Help or unknown flag
+ fprintf(c == 'h' ? stdout : stderr, "%s", usage);
+ exit_code = c == 'h' ? EXIT_SUCCESS : EXIT_FAILURE;
+ goto cleanup;
+ }
+ }
+
+ wlr_log_init(debug ? WLR_DEBUG : WLR_ERROR, NULL);
+
+ if (!nagbar.message) {
+ wlr_log(WLR_ERROR, "No message passed. Please provide --message/-m");
+ exit_code = EXIT_FAILURE;
+ goto cleanup;
+ }
+
+ wlr_log(WLR_DEBUG, "Output: %s", nagbar.output.name);
+ wlr_log(WLR_DEBUG, "Anchors: %d", nagbar.anchors);
+ wlr_log(WLR_DEBUG, "Type: %d", nagbar.type);
+ wlr_log(WLR_DEBUG, "Message: %s", nagbar.message);
+ wlr_log(WLR_DEBUG, "Font: %s", nagbar.font);
+ wlr_log(WLR_DEBUG, "Buttons");
+ for (int i = 0; i < nagbar.buttons->length; i++) {
+ struct sway_nagbar_button *button = nagbar.buttons->items[i];
+ wlr_log(WLR_DEBUG, "\t[%s] `%s`", button->text, button->action);
+ }
+
+ signal(SIGTERM, sig_handler);
+
+ nagbar_setup(&nagbar);
+ nagbar_run(&nagbar);
+ return exit_code;
+
+cleanup:
+ nagbar_destroy(&nagbar);
+ return exit_code;
+}
+