summaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h4
1 files changed, 4 insertions, 0 deletions
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);
82void output_damage_whole_container(struct sway_output *output, 82void output_damage_whole_container(struct sway_output *output,
83 struct sway_container *con); 83 struct sway_container *con);
84 84
85// this ONLY includes the enabled outputs
85struct sway_output *output_by_name_or_id(const char *name_or_id); 86struct sway_output *output_by_name_or_id(const char *name_or_id);
86 87
88// this includes all the outputs, including disabled ones
89struct sway_output *all_output_by_name_or_id(const char *name_or_id);
90
87void output_sort_workspaces(struct sway_output *output); 91void output_sort_workspaces(struct sway_output *output);
88 92
89void output_enable(struct sway_output *output, struct output_config *oc); 93void output_enable(struct sway_output *output, struct output_config *oc);