Added notes for hotplugging application scaling issues

Björn 2019-04-18 18:25:48 +02:00
parent 40fd0d0409
commit 284326d534

18
Home.md

@ -309,4 +309,20 @@ The first card is used for actual rendering, and display buffers are copied to t
### My GTK+3 theme isn't working
See [GTK 3 settings on Wayland](./GTK-3-settings-on-Wayland).
See [GTK 3 settings on Wayland](./GTK-3-settings-on-Wayland).
### After unplugging an external display, some applications appear too large on my HiDPI screen
See [Issue 1119](https://github.com/swaywm/wlroots/issues/1119).
Workaround:
1. If it does not exist, create the file
```
~/.Xresources
```
2. Add the following line to `~/.Xresources`:
```
Xft.dpi: 96
```
3. Add the following line to the sway config:
```
exec xrdb -load ~/.Xresources
```