fb86ed6b05
Co-authored-by: William McKinnon <contact@willmckinnon.com> Co-authored-by: Erik Reider <35975961+ErikReider@users.noreply.github.com>
31 lines
940 B
C
31 lines
940 B
C
#ifndef _SWAY_SWAYNAG_H
|
|
#define _SWAY_SWAYNAG_H
|
|
#include <wayland-server-core.h>
|
|
#include "stringop.h"
|
|
|
|
struct swaynag_instance {
|
|
struct wl_client *client;
|
|
struct wl_listener client_destroy;
|
|
|
|
const char *args;
|
|
int fd[2];
|
|
bool detailed;
|
|
};
|
|
|
|
// Spawn swaynag. If swaynag->detailed, then swaynag->fd[1] will left open
|
|
// so it can be written to. Call swaynag_show when done writing. This will
|
|
// be automatically called by swaynag_log if the instance is not spawned and
|
|
// swaynag->detailed is true.
|
|
bool swaynag_spawn(const char *swaynag_command,
|
|
struct swaynag_instance *swaynag);
|
|
|
|
// Write a log message to swaynag->fd[1]. This will fail when swaynag->detailed
|
|
// is false.
|
|
void swaynag_log(const char *swaynag_command, struct swaynag_instance *swaynag,
|
|
const char *fmt, ...) _SWAY_ATTRIB_PRINTF(3, 4);
|
|
|
|
// If swaynag->detailed, close swaynag->fd[1] so swaynag displays
|
|
void swaynag_show(struct swaynag_instance *swaynag);
|
|
|
|
#endif
|