Fixing Pixelated Apps on Hyprland
Today I learned that there are two important directories when it comes to launching an app in Linux: /usr/share/applications ~/.local/share/applications When an app you installed appears pixelated, it usually means that the app is not yet fully optimized for Wayland. To fix this, you typically only need to pass the following variables when launching the app: --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform=wayland How to Modify the Way Apps Start As previously mentioned, there are two important directories: ...