Menambah Icon ke Unity Launcher (Dash) Ubuntu

1. Menggunakan terminal, Mount ke direktori dimana shell script atau file execute berada.

2. Ketikkan di terminal : gedit nama_aplikasi.desktop

3. Gedit text editor akan terbuka, masukkan kode dibawah ini:

[Desktop Entry]
Name=Eclipse 
Type=Application
Exec=/path/to/file/eclipse
Terminal=false
Icon=/path/to/icon/eclipse.svg
Comment=Integrated Development Environment
NoDisplay=false
Categories=Development;IDE;
Name[en]=Eclipse

edit Icon= and Exec= and Name= *also Terminal=True/false determines weather the terminal opens a window and displays output or runs in the background

4. Di terminal, masih di direktori tempat file .desktop berada, ketikkan:

Desktop-file-install nama_aplikasi.desktop

5. Selamat, aplikasi sudah ada di launcher 😀

Leave a comment