How Can I Run An Appimage from Anywhere?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
I'm interested in using an appimage program (I've read What is an "AppImage"? How do I install it?), but without it installed, I can't find it in KDE's desktop search bar function. Is there a way to add it to the search bar, or make it discoverable via Konsole without having to navigate to a certain directory and performing ./program.appimage
?
Is that just the way appimages are supposed to work, or is there a way to make them behave more like regular programs?
kubuntu 17.10 kde
add a comment |Â
up vote
1
down vote
favorite
I'm interested in using an appimage program (I've read What is an "AppImage"? How do I install it?), but without it installed, I can't find it in KDE's desktop search bar function. Is there a way to add it to the search bar, or make it discoverable via Konsole without having to navigate to a certain directory and performing ./program.appimage
?
Is that just the way appimages are supposed to work, or is there a way to make them behave more like regular programs?
kubuntu 17.10 kde
2
Two things, add to path, and add launch icon!
â George Udosen
Apr 21 at 5:34
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm interested in using an appimage program (I've read What is an "AppImage"? How do I install it?), but without it installed, I can't find it in KDE's desktop search bar function. Is there a way to add it to the search bar, or make it discoverable via Konsole without having to navigate to a certain directory and performing ./program.appimage
?
Is that just the way appimages are supposed to work, or is there a way to make them behave more like regular programs?
kubuntu 17.10 kde
I'm interested in using an appimage program (I've read What is an "AppImage"? How do I install it?), but without it installed, I can't find it in KDE's desktop search bar function. Is there a way to add it to the search bar, or make it discoverable via Konsole without having to navigate to a certain directory and performing ./program.appimage
?
Is that just the way appimages are supposed to work, or is there a way to make them behave more like regular programs?
kubuntu 17.10 kde
asked Apr 21 at 4:48
Sarah Szabo
347416
347416
2
Two things, add to path, and add launch icon!
â George Udosen
Apr 21 at 5:34
add a comment |Â
2
Two things, add to path, and add launch icon!
â George Udosen
Apr 21 at 5:34
2
2
Two things, add to path, and add launch icon!
â George Udosen
Apr 21 at 5:34
Two things, add to path, and add launch icon!
â George Udosen
Apr 21 at 5:34
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Please take a look at this https://github.com/AppImage/AppImageKit, it mentions installation on debian-based systems. It installs in these locations:
- $HOME/Downloads (or its localized equivalent, as determined by G_USER_DIRECTORY_DOWNLOAD in glib)
- $HOME/.local/bin
- $HOME/bin
- $HOME/Applications
- /Applications
- /isodevice/Applications
- /isofrom/Applications
- /run/archiso/img_dev/Applications
- /lib/live/mount/findiso/Applications
- /opt
- /usr/local/bin
The last line there should make it run from any location, as I know that is in your path. So to check if that is the case run this command from the terminal:
which appimaged
Or simply
appimaged -v
The first will give the location of the program and the second will show the version installed, so in any case either should tell you if your's is setup as said in that link I provided.
I got this from that link, please take a look at it for more help:
NOTE: It may be necessary to restart (or xkill) dash, nautilus, to recognize new directories that didn't exist prior to the first run of appimaged. Alternatively, it should be sufficient to log out of the session and log in again after having run appimaged once.
If you have AppImageUpdate on your $PATH, then it can also do this neat trick:
- Image source:https://github.com/AppImage/AppImageKit
Download AppImageUpdate from https://github.com/AppImage/AppImageUpdate/releases/tag/continuous and put on your $PATH:
sudo mv "Downloads/AppImageUpdate-*.AppImage" /usr/local/bin/AppImageUpdate
chmod a+x /usr/local/bin/AppImageUpdate
You can run an AppImage from anywhere, but the locations mentioned above are the locations that the optional appimaged daemon monitors for automatic integration into the system (menus, icons, MIME types, etc.)
â probono
Apr 21 at 20:11
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Please take a look at this https://github.com/AppImage/AppImageKit, it mentions installation on debian-based systems. It installs in these locations:
- $HOME/Downloads (or its localized equivalent, as determined by G_USER_DIRECTORY_DOWNLOAD in glib)
- $HOME/.local/bin
- $HOME/bin
- $HOME/Applications
- /Applications
- /isodevice/Applications
- /isofrom/Applications
- /run/archiso/img_dev/Applications
- /lib/live/mount/findiso/Applications
- /opt
- /usr/local/bin
The last line there should make it run from any location, as I know that is in your path. So to check if that is the case run this command from the terminal:
which appimaged
Or simply
appimaged -v
The first will give the location of the program and the second will show the version installed, so in any case either should tell you if your's is setup as said in that link I provided.
I got this from that link, please take a look at it for more help:
NOTE: It may be necessary to restart (or xkill) dash, nautilus, to recognize new directories that didn't exist prior to the first run of appimaged. Alternatively, it should be sufficient to log out of the session and log in again after having run appimaged once.
If you have AppImageUpdate on your $PATH, then it can also do this neat trick:
- Image source:https://github.com/AppImage/AppImageKit
Download AppImageUpdate from https://github.com/AppImage/AppImageUpdate/releases/tag/continuous and put on your $PATH:
sudo mv "Downloads/AppImageUpdate-*.AppImage" /usr/local/bin/AppImageUpdate
chmod a+x /usr/local/bin/AppImageUpdate
You can run an AppImage from anywhere, but the locations mentioned above are the locations that the optional appimaged daemon monitors for automatic integration into the system (menus, icons, MIME types, etc.)
â probono
Apr 21 at 20:11
add a comment |Â
up vote
2
down vote
accepted
Please take a look at this https://github.com/AppImage/AppImageKit, it mentions installation on debian-based systems. It installs in these locations:
- $HOME/Downloads (or its localized equivalent, as determined by G_USER_DIRECTORY_DOWNLOAD in glib)
- $HOME/.local/bin
- $HOME/bin
- $HOME/Applications
- /Applications
- /isodevice/Applications
- /isofrom/Applications
- /run/archiso/img_dev/Applications
- /lib/live/mount/findiso/Applications
- /opt
- /usr/local/bin
The last line there should make it run from any location, as I know that is in your path. So to check if that is the case run this command from the terminal:
which appimaged
Or simply
appimaged -v
The first will give the location of the program and the second will show the version installed, so in any case either should tell you if your's is setup as said in that link I provided.
I got this from that link, please take a look at it for more help:
NOTE: It may be necessary to restart (or xkill) dash, nautilus, to recognize new directories that didn't exist prior to the first run of appimaged. Alternatively, it should be sufficient to log out of the session and log in again after having run appimaged once.
If you have AppImageUpdate on your $PATH, then it can also do this neat trick:
- Image source:https://github.com/AppImage/AppImageKit
Download AppImageUpdate from https://github.com/AppImage/AppImageUpdate/releases/tag/continuous and put on your $PATH:
sudo mv "Downloads/AppImageUpdate-*.AppImage" /usr/local/bin/AppImageUpdate
chmod a+x /usr/local/bin/AppImageUpdate
You can run an AppImage from anywhere, but the locations mentioned above are the locations that the optional appimaged daemon monitors for automatic integration into the system (menus, icons, MIME types, etc.)
â probono
Apr 21 at 20:11
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Please take a look at this https://github.com/AppImage/AppImageKit, it mentions installation on debian-based systems. It installs in these locations:
- $HOME/Downloads (or its localized equivalent, as determined by G_USER_DIRECTORY_DOWNLOAD in glib)
- $HOME/.local/bin
- $HOME/bin
- $HOME/Applications
- /Applications
- /isodevice/Applications
- /isofrom/Applications
- /run/archiso/img_dev/Applications
- /lib/live/mount/findiso/Applications
- /opt
- /usr/local/bin
The last line there should make it run from any location, as I know that is in your path. So to check if that is the case run this command from the terminal:
which appimaged
Or simply
appimaged -v
The first will give the location of the program and the second will show the version installed, so in any case either should tell you if your's is setup as said in that link I provided.
I got this from that link, please take a look at it for more help:
NOTE: It may be necessary to restart (or xkill) dash, nautilus, to recognize new directories that didn't exist prior to the first run of appimaged. Alternatively, it should be sufficient to log out of the session and log in again after having run appimaged once.
If you have AppImageUpdate on your $PATH, then it can also do this neat trick:
- Image source:https://github.com/AppImage/AppImageKit
Download AppImageUpdate from https://github.com/AppImage/AppImageUpdate/releases/tag/continuous and put on your $PATH:
sudo mv "Downloads/AppImageUpdate-*.AppImage" /usr/local/bin/AppImageUpdate
chmod a+x /usr/local/bin/AppImageUpdate
Please take a look at this https://github.com/AppImage/AppImageKit, it mentions installation on debian-based systems. It installs in these locations:
- $HOME/Downloads (or its localized equivalent, as determined by G_USER_DIRECTORY_DOWNLOAD in glib)
- $HOME/.local/bin
- $HOME/bin
- $HOME/Applications
- /Applications
- /isodevice/Applications
- /isofrom/Applications
- /run/archiso/img_dev/Applications
- /lib/live/mount/findiso/Applications
- /opt
- /usr/local/bin
The last line there should make it run from any location, as I know that is in your path. So to check if that is the case run this command from the terminal:
which appimaged
Or simply
appimaged -v
The first will give the location of the program and the second will show the version installed, so in any case either should tell you if your's is setup as said in that link I provided.
I got this from that link, please take a look at it for more help:
NOTE: It may be necessary to restart (or xkill) dash, nautilus, to recognize new directories that didn't exist prior to the first run of appimaged. Alternatively, it should be sufficient to log out of the session and log in again after having run appimaged once.
If you have AppImageUpdate on your $PATH, then it can also do this neat trick:
- Image source:https://github.com/AppImage/AppImageKit
Download AppImageUpdate from https://github.com/AppImage/AppImageUpdate/releases/tag/continuous and put on your $PATH:
sudo mv "Downloads/AppImageUpdate-*.AppImage" /usr/local/bin/AppImageUpdate
chmod a+x /usr/local/bin/AppImageUpdate
edited Apr 21 at 5:53
answered Apr 21 at 5:44
![](https://i.stack.imgur.com/ElvwO.jpg?s=32&g=1)
![](https://i.stack.imgur.com/ElvwO.jpg?s=32&g=1)
George Udosen
17k93559
17k93559
You can run an AppImage from anywhere, but the locations mentioned above are the locations that the optional appimaged daemon monitors for automatic integration into the system (menus, icons, MIME types, etc.)
â probono
Apr 21 at 20:11
add a comment |Â
You can run an AppImage from anywhere, but the locations mentioned above are the locations that the optional appimaged daemon monitors for automatic integration into the system (menus, icons, MIME types, etc.)
â probono
Apr 21 at 20:11
You can run an AppImage from anywhere, but the locations mentioned above are the locations that the optional appimaged daemon monitors for automatic integration into the system (menus, icons, MIME types, etc.)
â probono
Apr 21 at 20:11
You can run an AppImage from anywhere, but the locations mentioned above are the locations that the optional appimaged daemon monitors for automatic integration into the system (menus, icons, MIME types, etc.)
â probono
Apr 21 at 20:11
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2faskubuntu.com%2fquestions%2f1026846%2fhow-can-i-run-an-appimage-from-anywhere%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
2
Two things, add to path, and add launch icon!
â George Udosen
Apr 21 at 5:34