aboutsummaryrefslogtreecommitdiff
path: root/sway/config
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-01-04 09:47:04 -0500
committerGitHub <noreply@github.com>2018-01-04 09:47:04 -0500
commitbc7011db3c9298a6cdc9ab622c18450ba184973a (patch)
tree4e3260f1a88cc13d39115e22afba6c2b8b4a2d8f /sway/config
parent0f42f8c15889acd21c52ca4b138fad3e5ed4e64b (diff)
parentead3f1e676923b0457cef77b0b482e76cac50307 (diff)
downloadsway-bc7011db3c9298a6cdc9ab622c18450ba184973a.tar.xz
Merge pull request #1543 from emersion/output-config-by-identifier
Allow to configure outputs by their identifier
Diffstat (limited to 'sway/config')
-rw-r--r--sway/config/output.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/config/output.c b/sway/config/output.c
index f336c949..e798a20e 100644
--- a/sway/config/output.c
+++ b/sway/config/output.c
@@ -1,4 +1,5 @@
#define _XOPEN_SOURCE 700
+#include <stdbool.h>
#include <string.h>
#include <assert.h>
#include <wlr/types/wlr_output.h>
@@ -14,6 +15,13 @@ int output_name_cmp(const void *item, const void *data) {
return strcmp(output->name, name);
}
+void output_get_identifier(char *identifier, size_t len,
+ struct sway_output *output) {
+ struct wlr_output *wlr_output = output->wlr_output;
+ snprintf(identifier, len, "%s %s %s", wlr_output->make, wlr_output->model,
+ wlr_output->serial);
+}
+
struct output_config *new_output_config(const char *name) {
struct output_config *oc = calloc(1, sizeof(struct output_config));
if (oc == NULL) {