mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
120 lines
3.3 KiB
C
120 lines
3.3 KiB
C
#include <stdlib.h>
|
|
#include <signal.h>
|
|
#include "log.h"
|
|
#include "list.h"
|
|
#include "swaynag/config.h"
|
|
#include "swaynag/swaynag.h"
|
|
#include "swaynag/types.h"
|
|
|
|
static struct swaynag swaynag;
|
|
|
|
void sig_handler(int signal) {
|
|
swaynag_destroy(&swaynag);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
void sway_terminate(int code) {
|
|
swaynag_destroy(&swaynag);
|
|
exit(code);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
int status = EXIT_SUCCESS;
|
|
|
|
list_t *types = create_list();
|
|
swaynag_types_add_default(types);
|
|
|
|
swaynag.buttons = create_list();
|
|
wl_list_init(&swaynag.outputs);
|
|
wl_list_init(&swaynag.seats);
|
|
|
|
struct swaynag_button *button_close = calloc(1, sizeof(struct swaynag_button));
|
|
button_close->text = strdup("X");
|
|
button_close->type = SWAYNAG_ACTION_DISMISS;
|
|
list_add(swaynag.buttons, button_close);
|
|
|
|
swaynag.details.details_text = strdup("Toggle details");
|
|
|
|
char *config_path = NULL;
|
|
bool debug = false;
|
|
status = swaynag_parse_options(argc, argv, NULL, NULL, NULL,
|
|
&config_path, &debug);
|
|
if (status != 0) {
|
|
goto cleanup;
|
|
}
|
|
sway_log_init(debug ? SWAY_DEBUG : SWAY_ERROR, NULL);
|
|
|
|
if (!config_path) {
|
|
config_path = swaynag_get_config_path();
|
|
}
|
|
if (config_path) {
|
|
sway_log(SWAY_DEBUG, "Loading config file: %s", config_path);
|
|
status = swaynag_load_config(config_path, &swaynag, types);
|
|
if (status != 0) {
|
|
goto cleanup;
|
|
}
|
|
}
|
|
|
|
|
|
if (argc > 1) {
|
|
struct swaynag_type *type_args = swaynag_type_new("<args>");
|
|
list_add(types, type_args);
|
|
|
|
status = swaynag_parse_options(argc, argv, &swaynag, types,
|
|
type_args, NULL, NULL);
|
|
if (status != 0) {
|
|
goto cleanup;
|
|
}
|
|
}
|
|
|
|
if (!swaynag.message) {
|
|
sway_log(SWAY_ERROR, "No message passed. Please provide --message/-m");
|
|
status = EXIT_FAILURE;
|
|
goto cleanup;
|
|
}
|
|
|
|
if (!swaynag.type) {
|
|
swaynag.type = swaynag_type_get(types, "error");
|
|
}
|
|
|
|
// Construct a new type with the defaults as the base, the general config
|
|
// on top of that, followed by the type config, and finally any command
|
|
// line arguments
|
|
struct swaynag_type *type = swaynag_type_new(swaynag.type->name);
|
|
swaynag_type_merge(type, swaynag_type_get(types, "<defaults>"));
|
|
swaynag_type_merge(type, swaynag_type_get(types, "<config>"));
|
|
swaynag_type_merge(type, swaynag.type);
|
|
swaynag_type_merge(type, swaynag_type_get(types, "<args>"));
|
|
swaynag.type = type;
|
|
|
|
if (swaynag.details.message) {
|
|
swaynag.details.button_details = calloc(1, sizeof(struct swaynag_button));
|
|
swaynag.details.button_details->text = strdup(swaynag.details.details_text);
|
|
swaynag.details.button_details->type = SWAYNAG_ACTION_EXPAND;
|
|
list_add(swaynag.buttons, swaynag.details.button_details);
|
|
}
|
|
|
|
sway_log(SWAY_DEBUG, "Output: %s", swaynag.type->output);
|
|
sway_log(SWAY_DEBUG, "Anchors: %" PRIu32, swaynag.type->anchors);
|
|
sway_log(SWAY_DEBUG, "Type: %s", swaynag.type->name);
|
|
sway_log(SWAY_DEBUG, "Message: %s", swaynag.message);
|
|
char *font = pango_font_description_to_string(swaynag.type->font_description);
|
|
sway_log(SWAY_DEBUG, "Font: %s", font);
|
|
free(font);
|
|
sway_log(SWAY_DEBUG, "Buttons");
|
|
for (int i = 0; i < swaynag.buttons->length; i++) {
|
|
struct swaynag_button *button = swaynag.buttons->items[i];
|
|
sway_log(SWAY_DEBUG, "\t[%s] `%s`", button->text, button->action);
|
|
}
|
|
|
|
signal(SIGTERM, sig_handler);
|
|
|
|
swaynag_setup(&swaynag);
|
|
swaynag_run(&swaynag);
|
|
|
|
cleanup:
|
|
swaynag_types_free(types);
|
|
swaynag_destroy(&swaynag);
|
|
return status;
|
|
}
|