Creating An Application Launcher Icon For Android Studio
Answer : This is so simple... Go to Android Studio > Tools > Create desktop Entry Here is my android-studio.desktop file. Its working after adding bash -i before program path. [Desktop Entry] Version=1.0 Type=Application Name=Android Studio Exec=bash -i "/home/user/android-studio/bin/studio.sh" %f Icon=/home/user/android-studio/bin/studio.png Categories=Development;IDE; Terminal=false StartupNotify=true StartupWMClass=jetbrains-android-studio Name[en_GB]=android-studio.desktop This has been asked before for IntelliJ. Since Android Studio is the same in this context I will link to the answer and copy it here. https://askubuntu.com/a/272336/72597 Snippet from linked answer [Old Answer] Download IntelliJ IDEA CE from [www.jetbrains.com/idea/download/][3]. Extract ideaIC-XX.Y.Z.tar.gz using tar -zxvf ideaIC-XX.Y.Z.tar.gz Become root. sudo -i Move the extracted folder to /opt/idea mv ideaIC-XX.Y.Z /opt/idea Create a desktop file and install it: gedit idea.desktop and co...