Sway: Difference between revisions

imported from old wiki
Lulu (talk | contribs)
Remove duplicated entry "Touchscreen input bound to the wrong monitor in multi-monitor setups"
Line 185: Line 185:


Enabling this option allows any program run by the "users" group to request real-time priority.
Enabling this option allows any program run by the "users" group to request real-time priority.
=== Touchscreen input bound to the wrong monitor in multi-monitor setups ===
Using [[Home Manager]], add the following to your sway configuration:
<syntaxhighlight lang="nix>
  wayland.windowManager.sway = {
    config = {
      input = {
        "type:touch" = {
          # Replace touchscreen_output_identifier with the identifier of your touchscreen.
          map_to_output = touchscreen_output_identifier;
        };
      };
    };
  };
</syntaxhighlight>


=== WLR Error when trying to launch Sway ===
=== WLR Error when trying to launch Sway ===
Line 215: Line 198:
See this [https://github.com/swaywm/sway/issues/6590#issue-1021207180 GitHub issue for Sway] and the solution give in [https://github.com/swaywm/sway/issues/6590#issuecomment-938724355 this response].
See this [https://github.com/swaywm/sway/issues/6590#issue-1021207180 GitHub issue for Sway] and the solution give in [https://github.com/swaywm/sway/issues/6590#issuecomment-938724355 this response].


Using [[Home Manager]], add the following to your Sway configuration:
Using [[Home Manager]] add the following to your Sway configuration:
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
   wayland.windowManager.sway = {
   wayland.windowManager.sway = {