welcome: please sign in
location: Diff for "IntelliJ IDEA"
Differences between revisions 1 and 6 (spanning 5 versions)
Revision 1 as of 2016-03-09 14:02:55
Size: 575
Editor: dhcp144
Comment:
Revision 6 as of 2017-02-20 13:05:30
Size: 1933
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= IntelliJ IDEA Settings =
== Enable ==
= IntelliJ IDEA =
== Custom Launcher for IntelliJ IDEA in Ubuntu Unity ==
I got few information/ideas, how to create custom launcher from:
 * http://nufailm.blogspot.de/2012/05/custom-launcher-for-intellij-idea-in.html
 * https://gist.github.com/rob-murray/6828864

You have to create a file .desktop to enable quick start (windows key) for ubuntu.

Two options:
 * for all users on your system
 * just for you

=== For All Users ===
 1. First your application should be in a place, where every user can use it, like in /opt/.
  * extract and copy intelliJ to '''''/opt/idea-IU/'''''.
 1. Create an '''<application>.desktop''' file in '''''/usr/share/applications/'''''.
    You might have to use root rights through sudo to create .desktop file at this place.
  * create a intelliJ.desktop file with:
 {{{
 [Desktop Entry]
 Name=IntelliJ IDEA
 Version=16.1
 Exec=/opt/idea-IU/bin/idea.sh
 Icon=/opt/idea-IU/bin/idea.png
 Terminal=false
 StartupNotify=true
 Type=Application
 Categories=Development;IDE;
 }}}
 1. // mod permissions
 {{{
 sudo chmod 644 /usr/share/applications/intellij.desktop
 }}}
 {{{
 sudo chown root:root /usr/share/applications/intellij.desktop
 }}}

=== For Yourself ===

 1. know where your application is installed or stored
 1. create a .desktop file in '''''~/.local/share/applications'''''

== Settings ==
=== Enable ===
Line 27: Line 69:
  * '''Bytecode Viewer   * '''Bytecode Viewer'''

IntelliJ IDEA

Custom Launcher for IntelliJ IDEA in Ubuntu Unity

I got few information/ideas, how to create custom launcher from:

You have to create a file .desktop to enable quick start (windows key) for ubuntu.

Two options:

  • for all users on your system
  • just for you

For All Users

  1. First your application should be in a place, where every user can use it, like in /opt/.
    • extract and copy intelliJ to /opt/idea-IU/.

  2. Create an <application>.desktop file in /usr/share/applications/.

    • You might have to use root rights through sudo to create .desktop file at this place.
    • create a intelliJ.desktop file with:
     [Desktop Entry]
     Name=IntelliJ IDEA
     Version=16.1
     Exec=/opt/idea-IU/bin/idea.sh
     Icon=/opt/idea-IU/bin/idea.png
     Terminal=false
     StartupNotify=true
     Type=Application
     Categories=Development;IDE;
  3. // mod permissions
     sudo chmod 644 /usr/share/applications/intellij.desktop 
     sudo chown root:root /usr/share/applications/intellij.desktop 

For Yourself

  1. know where your application is installed or stored
  2. create a .desktop file in ~/.local/share/applications

Settings

Enable

  • Java Frameworks:
    • nothing

  • Build Tools:
    • all

  • Web Development
    • all except for Flash/Flex

  • Version Controls
    • GitHub (optional)

    • Subversion

    • Git

  • Test Tools
    • JUnit

    • Coverage

  • Application Servers
    • nothing

  • Clouds
    • nothing

  • Swing
    • disabled

  • Android
    • disabled

  • Database Tools
    • enabled

  • Other Tools
    • Bytecode Viewer

    • UML

  • Plugin Development
    • disabled

hepe: IntelliJ IDEA (last edited 2017-02-20 13:05:30 by 172)