Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 10218  / 2 Years ago, tue, february 22, 2022, 2:15:17

I've recently installed IntelliJ on my Ubuntu system and realized that the font I want to normally use Monaco doesn't render properly in IntelliJ. So, the problem was slightly fixed from this post however the editor would still not render properly with Monaco;



This is currently the state of my IDE:



enter image description here


More From » fonts

 Answers
7

So, I actually figured it out with some research and playing around; heres how you can do it on your side:



Requirements:




  1. Stable Internet connection

  2. Root access to your system



Steps:



We first need to install TuxJDK:




  1. Go on the link above and download the JDK;


  2. Once downloaded the JDK extract the folder named jdk-8u5-tuxjdk-b08;


  3. We're now going to move the folder into /usr/lib/ using Terminal






sudo mv FOLDERPATH /usr/lib/


Then, we're going to get IntelliJ to use TuxJDK:




  1. Go to your IntelliJ path;


  2. Then go into IDEAPATH/bin;


  3. Edit idea.sh using nano or gedit;



    sudo nano idea.sh

  4. Go all the way down and you should see a command starting with eval you want to change that command to this:






eval "/usr/lib/jvm/jdk-8u5-tuxjdk-b08/bin/java" $ALL_JVM_ARGS -Djb.restart.code=88 $MAIN_CLASS_NAME "$@"



  1. Save the file and open up IntelliJ IDEA.


[#24002] Wednesday, February 23, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rryble

Total Points: 489
Total Questions: 121
Total Answers: 119

Location: Marshall Islands
Member since Mon, May 31, 2021
3 Years ago
;