How do I make an application manually extract from a .tar be available on “Show Applications”?
I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).
I extract my application in some folder and to run it, i used to run
./folder/'ApplicationRunnable'
I realize that is a lot easier to click on icon, that i created by using to following commands:
sudo apt-get install --no-install-recommends gnome-panel
gnome-desktop-item-edit --create-new ~/Desktop
But in my "Show Application" search, my application can't be found...
How can I make this kind of application appears on my "Show Applications" search?
gnome-shell menu .desktop tar appmenu
add a comment |
I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).
I extract my application in some folder and to run it, i used to run
./folder/'ApplicationRunnable'
I realize that is a lot easier to click on icon, that i created by using to following commands:
sudo apt-get install --no-install-recommends gnome-panel
gnome-desktop-item-edit --create-new ~/Desktop
But in my "Show Application" search, my application can't be found...
How can I make this kind of application appears on my "Show Applications" search?
gnome-shell menu .desktop tar appmenu
add a comment |
I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).
I extract my application in some folder and to run it, i used to run
./folder/'ApplicationRunnable'
I realize that is a lot easier to click on icon, that i created by using to following commands:
sudo apt-get install --no-install-recommends gnome-panel
gnome-desktop-item-edit --create-new ~/Desktop
But in my "Show Application" search, my application can't be found...
How can I make this kind of application appears on my "Show Applications" search?
gnome-shell menu .desktop tar appmenu
I want my application that is portable extract from a .tar, like PopcornTime to be available in the "Show applications" in Ubuntu Bionic Beaver (18.04).
I extract my application in some folder and to run it, i used to run
./folder/'ApplicationRunnable'
I realize that is a lot easier to click on icon, that i created by using to following commands:
sudo apt-get install --no-install-recommends gnome-panel
gnome-desktop-item-edit --create-new ~/Desktop
But in my "Show Application" search, my application can't be found...
How can I make this kind of application appears on my "Show Applications" search?
gnome-shell menu .desktop tar appmenu
gnome-shell menu .desktop tar appmenu
edited 7 mins ago
pomsky
30.3k1193126
30.3k1193126
asked 17 mins ago
Sham FiorinSham Fiorin
5618
5618
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
If you already have a .desktop file copy it into ~/.local/share/applications.
If not, see this guide on how to create one.
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.
Create an empty text file, name it <application-name>.desktop, and add the following lines to it
[Desktop Entry]
Name=Application Name
Comment=A short description of the application
Exec=/full/path/to/'ApplicationRunnable'
Terminal=false
Type=Application
Icon=/full/path/to/icon-file
Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.
If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1115143%2fhow-do-i-make-an-application-manually-extract-from-a-tar-be-available-on-show%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you already have a .desktop file copy it into ~/.local/share/applications.
If not, see this guide on how to create one.
add a comment |
If you already have a .desktop file copy it into ~/.local/share/applications.
If not, see this guide on how to create one.
add a comment |
If you already have a .desktop file copy it into ~/.local/share/applications.
If not, see this guide on how to create one.
If you already have a .desktop file copy it into ~/.local/share/applications.
If not, see this guide on how to create one.
answered 9 mins ago
HugoHugo
691618
691618
add a comment |
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 8 mins ago
Cristian VrinceanuCristian Vrinceanu
213
213
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Cristian Vrinceanu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.
Create an empty text file, name it <application-name>.desktop, and add the following lines to it
[Desktop Entry]
Name=Application Name
Comment=A short description of the application
Exec=/full/path/to/'ApplicationRunnable'
Terminal=false
Type=Application
Icon=/full/path/to/icon-file
Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.
If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.
add a comment |
You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.
Create an empty text file, name it <application-name>.desktop, and add the following lines to it
[Desktop Entry]
Name=Application Name
Comment=A short description of the application
Exec=/full/path/to/'ApplicationRunnable'
Terminal=false
Type=Application
Icon=/full/path/to/icon-file
Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.
If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.
add a comment |
You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.
Create an empty text file, name it <application-name>.desktop, and add the following lines to it
[Desktop Entry]
Name=Application Name
Comment=A short description of the application
Exec=/full/path/to/'ApplicationRunnable'
Terminal=false
Type=Application
Icon=/full/path/to/icon-file
Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.
If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.
You need to create a .desktop launcher for the application in your ~/.local/share/applications directory.
Create an empty text file, name it <application-name>.desktop, and add the following lines to it
[Desktop Entry]
Name=Application Name
Comment=A short description of the application
Exec=/full/path/to/'ApplicationRunnable'
Terminal=false
Type=Application
Icon=/full/path/to/icon-file
Then save the file. If it doesn't appear in 'Show Applications', log out and re-login.
If you already have a working .desktop launcher created with gnome-desktop-item-edit in your ~/Desktop, then just copy it to ~/.local/share/applications.
edited 4 mins ago
answered 9 mins ago
pomskypomsky
30.3k1193126
30.3k1193126
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1115143%2fhow-do-i-make-an-application-manually-extract-from-a-tar-be-available-on-show%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown