aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index fe3cdaf1..2255b551 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -36,8 +36,12 @@
36#include <wlr/types/wlr_drm_lease_v1.h> 36#include <wlr/types/wlr_drm_lease_v1.h>
37#endif 37#endif
38 38
39static bool output_match_name_or_id(struct sway_output *output, 39bool output_match_name_or_id(struct sway_output *output,
40 const char *name_or_id) { 40 const char *name_or_id) {
41 if (strcmp(name_or_id, "*") == 0) {
42 return true;
43 }
44
41 char identifier[128]; 45 char identifier[128];
42 output_get_identifier(identifier, sizeof(identifier), output); 46 output_get_identifier(identifier, sizeof(identifier), output);
43 return strcasecmp(identifier, name_or_id) == 0 47 return strcasecmp(identifier, name_or_id) == 0