From ed2e553b8d0dff3e74eeaa80a2586458271b2565 Mon Sep 17 00:00:00 2001
From: Moelf <jerryling315@gmail.com>
Date: Fri, 10 May 2019 23:57:53 -0700
Subject: Implement output toggle

discussed in #4136, this can't handle wildcard but won't crash.
---
 include/sway/commands.h | 1 +
 include/sway/output.h   | 4 ++++
 2 files changed, 5 insertions(+)

(limited to 'include/sway')

diff --git a/include/sway/commands.h b/include/sway/commands.h
index cfe2aa07..c4903788 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -270,6 +270,7 @@ sway_cmd output_cmd_mode;
 sway_cmd output_cmd_position;
 sway_cmd output_cmd_scale;
 sway_cmd output_cmd_subpixel;
+sway_cmd output_cmd_toggle;
 sway_cmd output_cmd_transform;
 
 sway_cmd seat_cmd_attach;
diff --git a/include/sway/output.h b/include/sway/output.h
index cae77e2e..d4438c0e 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -82,8 +82,12 @@ void output_damage_box(struct sway_output *output, struct wlr_box *box);
 void output_damage_whole_container(struct sway_output *output,
 	struct sway_container *con);
 
+// this ONLY includes the enabled outputs
 struct sway_output *output_by_name_or_id(const char *name_or_id);
 
+// this includes all the outputs, including disabled ones
+struct sway_output *all_output_by_name_or_id(const char *name_or_id);
+
 void output_sort_workspaces(struct sway_output *output);
 
 void output_enable(struct sway_output *output, struct output_config *oc);
-- 
cgit v1.2.3