fix temporarily disabling a single monitor
The code in this else completely freezes my system when I run the swayidle command to replicate xset dpms force off. No idea if it works on multiple monitors, but for now avoid running when there's 1 monitor. Also remove the comment with the function name in sway.
This commit is contained in:
parent
d9ab75721a
commit
ee5bd9a643
1 changed files with 1 additions and 2 deletions
3
dwl.c
3
dwl.c
|
@ -1456,7 +1456,6 @@ outputmgrapply(struct wl_listener *listener, void *data)
|
||||||
outputmgrapplyortest(config, false);
|
outputmgrapplyortest(config, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// apply_output_config
|
|
||||||
void
|
void
|
||||||
outputmgrapplyortest(struct wlr_output_configuration_v1 *config, bool test)
|
outputmgrapplyortest(struct wlr_output_configuration_v1 *config, bool test)
|
||||||
{
|
{
|
||||||
|
@ -1481,7 +1480,7 @@ outputmgrapplyortest(struct wlr_output_configuration_v1 *config, bool test)
|
||||||
config_head->state.x, config_head->state.y);
|
config_head->state.x, config_head->state.y);
|
||||||
wlr_output_set_transform(wlr_output, config_head->state.transform);
|
wlr_output_set_transform(wlr_output, config_head->state.transform);
|
||||||
wlr_output_set_scale(wlr_output, config_head->state.scale);
|
wlr_output_set_scale(wlr_output, config_head->state.scale);
|
||||||
} else {
|
} else if (wl_list_length(&mons) > 1) {
|
||||||
Monitor *m;
|
Monitor *m;
|
||||||
wl_list_for_each(m, &mons, link) {
|
wl_list_for_each(m, &mons, link) {
|
||||||
if (m->wlr_output->name == wlr_output->name) {
|
if (m->wlr_output->name == wlr_output->name) {
|
||||||
|
|
Loading…
Reference in a new issue