diff options
author | Simon Ser <contact@emersion.fr> | 2023-02-28 12:51:59 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-04-14 18:34:54 +0200 |
commit | fcec5817483ba279b714acf6d81f5d7a3688b092 (patch) | |
tree | c0ebb0ab0b6c2f3797fa1e34dcb344fe12028dc1 /sway/desktop | |
parent | 04904ab9a57ff397702d6736523abeaa25d5d05b (diff) |
Use output_match_name_or_id() in apply_output_config_to_outputs()
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/output.c | 6 |
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 @@ #include <wlr/types/wlr_drm_lease_v1.h> #endif -static bool output_match_name_or_id(struct sway_output *output, +bool output_match_name_or_id(struct sway_output *output, const char *name_or_id) { + if (strcmp(name_or_id, "*") == 0) { + return true; + } + char identifier[128]; output_get_identifier(identifier, sizeof(identifier), output); return strcasecmp(identifier, name_or_id) == 0 |