Jump to content

Sway: Difference between revisions

514 bytes added ,  20 December 2022
Add info on cursor size
imported>Tamiyo
(gtkUsePortal = true; is deprecated as of 20.11)
imported>Onny
(Add info on cursor size)
Line 182: Line 182:
}}
}}
When you launch sway, the systemd service is started.  
When you launch sway, the systemd service is started.  
== Troubleshooting ==
=== Cursor is too tiny on HiDPI displays ====
Using [[Home Manager]] try configuring a general mouse cursor size and theme
<syntaxhighlight lang="nix>
home-manager.users.myUser = {
    home.pointerCursor = {
      name = "Adwaita";
      package = pkgs.gnome.adwaita-icon-theme;
      size = 24;
      x11 = {
        enable = true;
        defaultCursor = "Adwaita";
      };
    };
};
</syntaxhighlight>
Replace <code>myUser</code> with your user running the graphical environment.


[[Category:Window managers]]
[[Category:Window managers]]
[[Category:Applications]]
[[Category:Applications]]
Anonymous user