How do I make an application manually extracted from a .tar be available on “Show Applications”?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
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 Feb 3 at 1:40
pomsky
33.6k11105137
33.6k11105137
asked Feb 3 at 1:22
Sham FiorinSham Fiorin
6318
6318
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 |
In general you need to create a .desktop
launcher for the application in your ~/.local/share/applications
directory.
To create a simple .desktop
launcher by hand, first 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.
In particular if you already have a working .desktop
launcher (created with the GUI tool gnome-desktop-item-edit
) in your ~/Desktop
, then just copy it to ~/.local/share/applications
.
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/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-extracted-from-a-tar-be-available-on-sho%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 Feb 3 at 1:29
HugoHugo
810819
810819
add a comment |
add a comment |
In general you need to create a .desktop
launcher for the application in your ~/.local/share/applications
directory.
To create a simple .desktop
launcher by hand, first 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.
In particular if you already have a working .desktop
launcher (created with the GUI tool gnome-desktop-item-edit
) in your ~/Desktop
, then just copy it to ~/.local/share/applications
.
add a comment |
In general you need to create a .desktop
launcher for the application in your ~/.local/share/applications
directory.
To create a simple .desktop
launcher by hand, first 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.
In particular if you already have a working .desktop
launcher (created with the GUI tool gnome-desktop-item-edit
) in your ~/Desktop
, then just copy it to ~/.local/share/applications
.
add a comment |
In general you need to create a .desktop
launcher for the application in your ~/.local/share/applications
directory.
To create a simple .desktop
launcher by hand, first 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.
In particular if you already have a working .desktop
launcher (created with the GUI tool gnome-desktop-item-edit
) in your ~/Desktop
, then just copy it to ~/.local/share/applications
.
In general you need to create a .desktop
launcher for the application in your ~/.local/share/applications
directory.
To create a simple .desktop
launcher by hand, first 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.
In particular if you already have a working .desktop
launcher (created with the GUI tool gnome-desktop-item-edit
) in your ~/Desktop
, then just copy it to ~/.local/share/applications
.
edited Feb 5 at 16:41
answered Feb 3 at 1:30
pomskypomsky
33.6k11105137
33.6k11105137
add a comment |
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
add a comment |
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
Copy the .desktop file generated with gnome-desktop-item-edit in /usr/share/applications
answered Feb 3 at 1:31
Cristian VrinceanuCristian Vrinceanu
1105
1105
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-extracted-from-a-tar-be-available-on-sho%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