Solution JetBrains IDE not working in Xmonad Linux
已回答
This is a solution and not a question, since no online resources document this problem.
I've been having issues with all JetBrains IDEs in my Xmonad window manager, they would just show a grey screen and nothing more.
Solution:
https://stackoverflow.com/questions/65764985/sdl2-applications-do-not-work-correctly-in-xmonad
import XMonad
import XMonad.Hooks.EwmhDesktops
main = xmonad $ ewmh def {
modMask = mod4Mask
}
Add `ewmh` to your config and every thing works fine.
请先登录再写评论。