AppImage on ArchLinux+wayland

I have started using AppImages more and more, a lot of them are electron apps. When running Arch+Plasma6 on wayland, the font rendering comes out blurred which I did not particularly like ( call it eye candy effect ), if you are also like me, you can try this solution,

here is my ~/bin/appimage-launcher

#!/usr/bin/env sh
# -ozone-platform-hint=wayland: The standard modern flag.
# --ozone-platform=wayland: Often required for older versions (Electron <20).
# --enable-features=WaylandWindowDecorations: Ensures the app has native window borders

exec "$@" \
--ozone-platform=wayland \
--ozone-platform-hint=wayland \
--enable-features=WaylandWindowDecorations

before

After

1 Like