Add program to applications list in LInux Mint
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I have installed Xmind on linux mint.
It does not come in a deb, and I had to unzip a bunch of files to my home directory.
Now I want xmind to show up in my start menu applications. Is there a way I can do this?
I want to be able to open the start menu and just start typing "xmind" and have the application show up.
Thanks
linux-mint
add a comment |Â
up vote
0
down vote
favorite
I have installed Xmind on linux mint.
It does not come in a deb, and I had to unzip a bunch of files to my home directory.
Now I want xmind to show up in my start menu applications. Is there a way I can do this?
I want to be able to open the start menu and just start typing "xmind" and have the application show up.
Thanks
linux-mint
Yes, but the DEsktop can play a part. It's different for KDE, Mate, Cinnamon .... On my current (Ubuntu) DEsktop I right click the menu, select 'Applications Menu' then 'Edit Menu', navigate to where I want then hit "+new item".... If I were using Linux Mint with the same DEsktop I'd expect it to be the same... If you want it to perfectly match your DEsktop, you'll have to tell us which Mint (and DEsktop) you are running.
â guiverc
Feb 27 at 5:04
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have installed Xmind on linux mint.
It does not come in a deb, and I had to unzip a bunch of files to my home directory.
Now I want xmind to show up in my start menu applications. Is there a way I can do this?
I want to be able to open the start menu and just start typing "xmind" and have the application show up.
Thanks
linux-mint
I have installed Xmind on linux mint.
It does not come in a deb, and I had to unzip a bunch of files to my home directory.
Now I want xmind to show up in my start menu applications. Is there a way I can do this?
I want to be able to open the start menu and just start typing "xmind" and have the application show up.
Thanks
linux-mint
asked Feb 27 at 3:20
ScottF
15518
15518
Yes, but the DEsktop can play a part. It's different for KDE, Mate, Cinnamon .... On my current (Ubuntu) DEsktop I right click the menu, select 'Applications Menu' then 'Edit Menu', navigate to where I want then hit "+new item".... If I were using Linux Mint with the same DEsktop I'd expect it to be the same... If you want it to perfectly match your DEsktop, you'll have to tell us which Mint (and DEsktop) you are running.
â guiverc
Feb 27 at 5:04
add a comment |Â
Yes, but the DEsktop can play a part. It's different for KDE, Mate, Cinnamon .... On my current (Ubuntu) DEsktop I right click the menu, select 'Applications Menu' then 'Edit Menu', navigate to where I want then hit "+new item".... If I were using Linux Mint with the same DEsktop I'd expect it to be the same... If you want it to perfectly match your DEsktop, you'll have to tell us which Mint (and DEsktop) you are running.
â guiverc
Feb 27 at 5:04
Yes, but the DEsktop can play a part. It's different for KDE, Mate, Cinnamon .... On my current (Ubuntu) DEsktop I right click the menu, select 'Applications Menu' then 'Edit Menu', navigate to where I want then hit "+new item".... If I were using Linux Mint with the same DEsktop I'd expect it to be the same... If you want it to perfectly match your DEsktop, you'll have to tell us which Mint (and DEsktop) you are running.
â guiverc
Feb 27 at 5:04
Yes, but the DEsktop can play a part. It's different for KDE, Mate, Cinnamon .... On my current (Ubuntu) DEsktop I right click the menu, select 'Applications Menu' then 'Edit Menu', navigate to where I want then hit "+new item".... If I were using Linux Mint with the same DEsktop I'd expect it to be the same... If you want it to perfectly match your DEsktop, you'll have to tell us which Mint (and DEsktop) you are running.
â guiverc
Feb 27 at 5:04
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
You will need to create a xmind.desktop
file. Look for a sample in /usr/share/applications
and copy one to ~/.local/share/applications/xmind.desktop
, and change the appropriate lines. The most important lines will be:
Name=
Exec=
GenericName=
Categories=
Icon=
Comment=
Terminal=false
The categories
should be a semi-colon delimited list of the menu categories in which you want the program to appear. The exec
should point the complete pathname of the executable. The genericname
will be the name that actually appears in the menu. The comment
is what appears when you hover the mouse over the menu entry. The icon
can be an icon name if the icon is in a standard icon directory or a path.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You will need to create a xmind.desktop
file. Look for a sample in /usr/share/applications
and copy one to ~/.local/share/applications/xmind.desktop
, and change the appropriate lines. The most important lines will be:
Name=
Exec=
GenericName=
Categories=
Icon=
Comment=
Terminal=false
The categories
should be a semi-colon delimited list of the menu categories in which you want the program to appear. The exec
should point the complete pathname of the executable. The genericname
will be the name that actually appears in the menu. The comment
is what appears when you hover the mouse over the menu entry. The icon
can be an icon name if the icon is in a standard icon directory or a path.
add a comment |Â
up vote
1
down vote
You will need to create a xmind.desktop
file. Look for a sample in /usr/share/applications
and copy one to ~/.local/share/applications/xmind.desktop
, and change the appropriate lines. The most important lines will be:
Name=
Exec=
GenericName=
Categories=
Icon=
Comment=
Terminal=false
The categories
should be a semi-colon delimited list of the menu categories in which you want the program to appear. The exec
should point the complete pathname of the executable. The genericname
will be the name that actually appears in the menu. The comment
is what appears when you hover the mouse over the menu entry. The icon
can be an icon name if the icon is in a standard icon directory or a path.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
You will need to create a xmind.desktop
file. Look for a sample in /usr/share/applications
and copy one to ~/.local/share/applications/xmind.desktop
, and change the appropriate lines. The most important lines will be:
Name=
Exec=
GenericName=
Categories=
Icon=
Comment=
Terminal=false
The categories
should be a semi-colon delimited list of the menu categories in which you want the program to appear. The exec
should point the complete pathname of the executable. The genericname
will be the name that actually appears in the menu. The comment
is what appears when you hover the mouse over the menu entry. The icon
can be an icon name if the icon is in a standard icon directory or a path.
You will need to create a xmind.desktop
file. Look for a sample in /usr/share/applications
and copy one to ~/.local/share/applications/xmind.desktop
, and change the appropriate lines. The most important lines will be:
Name=
Exec=
GenericName=
Categories=
Icon=
Comment=
Terminal=false
The categories
should be a semi-colon delimited list of the menu categories in which you want the program to appear. The exec
should point the complete pathname of the executable. The genericname
will be the name that actually appears in the menu. The comment
is what appears when you hover the mouse over the menu entry. The icon
can be an icon name if the icon is in a standard icon directory or a path.
edited Feb 27 at 5:36
answered Feb 27 at 5:30
user1404316
2,314520
2,314520
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f426840%2fadd-program-to-applications-list-in-linux-mint%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Yes, but the DEsktop can play a part. It's different for KDE, Mate, Cinnamon .... On my current (Ubuntu) DEsktop I right click the menu, select 'Applications Menu' then 'Edit Menu', navigate to where I want then hit "+new item".... If I were using Linux Mint with the same DEsktop I'd expect it to be the same... If you want it to perfectly match your DEsktop, you'll have to tell us which Mint (and DEsktop) you are running.
â guiverc
Feb 27 at 5:04