aboutsummaryrefslogtreecommitdiff
path: root/include/sway/swaynag.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-08-03 15:08:38 -0400
committerGitHub <noreply@github.com>2018-08-03 15:08:38 -0400
commit38675eba7be471a2dacb5928f54d046297c23517 (patch)
tree7982d1f38fcb3620372c1c8461de1450063e5355 /include/sway/swaynag.h
parent3e2bf7f3a550db995a38808e0abd53fefab96f80 (diff)
parent36fd84cc42ebb2933d24c2d3d4b84f3f32f065b0 (diff)
downloadsway-38675eba7be471a2dacb5928f54d046297c23517.tar.xz
Merge pull request #2400 from RedSoxFan/swaynag-config-errors
Show swaynag on config errors
Diffstat (limited to 'include/sway/swaynag.h')
-rw-r--r--include/sway/swaynag.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/sway/swaynag.h b/include/sway/swaynag.h
new file mode 100644
index 00000000..5a178739
--- /dev/null
+++ b/include/sway/swaynag.h
@@ -0,0 +1,29 @@
+#ifndef _SWAY_SWAYNAG_H
+#define _SWAY_SWAYNAG_H
+
+struct swaynag_instance {
+ const char *args;
+ pid_t pid;
+ 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);
+
+// Kill the swaynag instance
+void swaynag_kill(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, ...);
+
+// If swaynag->detailed, close swaynag->fd[1] so swaynag displays
+void swaynag_show(struct swaynag_instance *swaynag);
+
+#endif