Results 1 to 3 of 3

Thread: Making executables appear in app launcher.

  1. #1
    Join Date
    Apr 2014
    Beans
    2

    Making executables appear in app launcher.

    I have downloaded Minecraft. To run it I select 'open with openJDK java7 runtime' on the Minecarft.jar file in my downlaods folder, and then it opens. In my home folder there is a file named '.minecraft'. How can I get Minecraft to appear in my app launcher. (I'm running elementaryOS).

  2. #2
    Join Date
    Nov 2011
    Beans
    2,336
    Distro
    Ubuntu

    Re: Making executables appear in app launcher.

    Elementary's underpinnings are based on Ubuntu 12.04, but it uses a different application launcher. Probably best to look here: http://elementaryos.org/support.

  3. #3
    Join Date
    Mar 2014
    Beans
    Hidden!

    Re: Making executables appear in app launcher.

    Try this....
    http://elementaryos.org/answers/crea...-in-dock-panel
    Change the Exec= line to reflect your path to minecraft....most likely from your previous post...
    Code:
    java -jar /home/username/Downloads/minecraft/minecraft.jar lc
    Change to your username. If you go to your minecraft.jar file in the browser then right click on minecraft.jar and select copy. It will copy the path to the clipboard.


    You could also try using this as your ~/.local/share/applications/minecraft.desktop file.
    I just now installed minecraft with directions from HERE
    It installed this .desktop file.
    Code:
    [Desktop Entry]
    Type=Application
    Name=Minecraft
    GenericName=Game
    Comment=Break and place blocks to build imaginative things
    Exec=sh -c "XMODIFIERS= java -Xmx2048M -Xms512M -cp /usr/share/minecraft/minecraft.jar net.minecraft.bootstrap.Bootstrap"
    Icon=minecraft
    Categories=Game
    StartupNotify=true
    Actions=Screenshots;Textures;Wiki
    
    [Desktop Action Screenshots]
    Name=_Screenshots
    Exec=xdg-open .minecraft/screenshots/
    
    [Desktop Action Textures]
    Name=_Texture Packs
    Exec=xdg-open .minecraft/texturepacks/
    
    
    [Desktop Action Wiki]
    Name=_Wiki
    Exec=xdg-open http://www.minecraftwiki.net/
    Change for your path to minecraft.jar

    You can test either of the Exec= lines in terminal.
    Last edited by grumblebum2; April 13th, 2014 at 12:45 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •