Blank Android Studio window in DWM

50

Solution 1

You'll need to set the _JAVA_AWT_WM_NONREPARENTING variable to 1 through some way to Android Studio.

If you're starting dwm via startx, add this to your .xinitrc:

export _JAVA_AWT_WM_NONREPARENTING=1

If you're launching Android Studio from a shell, add the same line to your shell's rc file.

If you're launching Android Studio from a shortcut, and you're not using startx, then you'll have to add the variable to the WM after the process started.

Solution 2

echo export _JAVA_AWT_WM_NONREPARENTING=1 >> ~/.profile
Share:
50

Related videos on Youtube

ramon
Author by

ramon

Updated on September 18, 2022

Comments

  • ramon
    ramon over 1 year

    I am looking for excel formula to get the values next to color. For example, if this is paste in column the color value will show on column b (sage)

    For an alluring and contemporary update for your home

    Product Features :

    • Brand : L Linens
    • Color : Sage
    • Material : Cotton
    • Size : California King
    • Type : Bed Sheets
    • Pattern : Solid
    • Deep pocket Fitted Sheet with elastic all around designed to fit extra thick mattresses
    • Toby Speight
      Toby Speight about 8 years
      Please edit your question to show the code you have written so far and where you are stuck, then we can try to help with specific problems. You should also read How to Ask.
    • jasonwryan
      jasonwryan almost 7 years
    • jasonwryan
      jasonwryan almost 7 years
      It should work in .xinitrc, but equally will work in your shell profile.
    • saga
      saga almost 7 years
      yes it should, but it doesn't. That's the problem, I can't export variables from .xinitrc
    • jasonwryan
      jasonwryan almost 7 years
      That is a separate issue. Just put it in your shell profile.
  • vesche
    vesche about 5 years
    Thank you so much
  • peterh
    peterh over 3 years
    Report from the future: the solution works also in ratpoison.
  • Gabriel Alejandro López López
    Gabriel Alejandro López López over 2 years
    My session starts dwm from gdm3, which calls ~/.Xsession so there is where the export have to be in this case. Previously using startx and yes, ~/.xinitrc is the way. Or ~/.xsessionrc (Debian and derivatives specific)