Sway: Difference between revisions

Serif (talk | contribs)
mNo edit summary
Lulu (talk | contribs)
Line 193: Line 193:
hardware.opengl.enable = true;
hardware.opengl.enable = true;
</syntaxhighlight>
</syntaxhighlight>
=== Touchscreen input bound to the wrong monitor in multi-monitor setups ===
Using [[Home Manager]], add the following to your Sway configuration:
  wayland.windowManager.sway = {
    config = {
      [...]
      input = {
        [...]
        "type:touch" = {
          # Replace touchscreen_output_identifier with the identifier of your touchscreen.
          map_to_output = touchscreen_output_identifier;
        };
      };
    };
  };


== Tips and tricks ==
== Tips and tricks ==