diff --git a/src/configs/destinations.json b/src/configs/destinations.json
index 8fed235e634edced33dcbf8b9741506718ef41ca..462fbd690b8a23b05215b5ef46a2636697966c6f 100644
--- a/src/configs/destinations.json
+++ b/src/configs/destinations.json
@@ -1,5 +1,6 @@
 {
     "bin": "$HOME/bin",
+    "appimages": "$HOME/.appimages",
     "downloads": "$HOME/Downloads",
     "documents": "$HOME/Documents",
     "pictures": "$HOME/Pictures",
diff --git a/src/configs/destinations_alias.json b/src/configs/destinations_alias.json
index c34d6dbd814f578bf4fc1beed8ec2436391f80bf..438fb4dc92cf31716b7741064141b8a10a83f20d 100644
--- a/src/configs/destinations_alias.json
+++ b/src/configs/destinations_alias.json
@@ -1,5 +1,4 @@
 {
-    "appimage": "bin",
     "gnome_shell_themes": "themes",
     "cinnamon_themes": "themes",
     "gtk2_themes": "themes",
diff --git a/src/handlers/xdgurl.cpp b/src/handlers/xdgurl.cpp
index c10a3fb50d9fa72ebdb3dfc51c45eb06dce2789c..a55536597a04628e5e2cdd8ab006c47404eb0887 100644
--- a/src/handlers/xdgurl.cpp
+++ b/src/handlers/xdgurl.cpp
@@ -169,10 +169,14 @@ void XdgUrl::_installDownloadedFile(QNetworkReply *reply)
     Utility::File::makeDir(destination);
     Utility::File::remove(path); // Remove previous downloaded file
 
-    if ((type == "bin" || type == "appimage")
+    if (type == "bin"
             && Utility::Package::installProgram(temporaryFile.fileName(), path)) {
         result["message"] = QString("The program has been installed into " + destination);
     }
+    else if (type == "appimages"
+             && Utility::Package::installProgram(temporaryFile.fileName(), path)) {
+        result["message"] = QString("The Appimage has been installed into " + destination);
+    }
     else if ((type == "plasma_plasmoids" || type == "plasma4_plasmoids" || type == "plasma5_plasmoids")
              && Utility::Package::installPlasmapkg(temporaryFile.fileName(), "plasmoid")) {
         result["message"] = QString("The plasmoid has been installed");