Normally, Mobile Partner application makes a Desktop Shortcut. Certain times it may become invisible for some reasons. To solve this:
- Press Ctrl+Alt+T to open a terminal. In the prompt type,
gksudo gedit
and make a space infront.
- In file browser go to the folder
/usr/share/applications
. Here find if there a Mobile Partner Icon.
- If present Drag and Drop it to the terminal. Then press Enter
- In the resulting text file, go to the line starts with
Exec=
. At the end of this line it should be %F
. Change the content.
- Then go to the line starts with
NoDisplay=
. It should be NoDisplay=false
. If present is true
, change it.
- Then save the file and close.
If there is no such icon (Desktop configuration file) in /usr/share/applications
, You need to create a new one.
For that, run :
gksudo gedit /usr/share/applications/MobileParter.desktop
In the resulting empty text file, Copy and Paste the following and save.
[Desktop Entry]
Encoding=UTF-8
Name=Mobile Partner
Comment=Mobile Partner Airtel
TryExec=sudo /usr/local/airtel/MobilePartner
Exec=sudo /usr/local/airtel/MobilePartner %F
StartupNotify=true
Terminal=false
Type=Application
Icon=/usr/local/airtel/mobile.png
NoDisplay=false
MimeType=applications/php
There will be the icon in dash now.
gksu
. Write the Exec-part like this:Exec=gksu /usr/local/airtel/MobilePartner
. – chaos Dec 27 '13 at 08:18