Here I will provide my steps for installing archive apps such as .tar.bz2.
tar -xvjf file.tar.bz2
# verbose command: "tar --extract --verbose --bzip2 --file file.tar.bz2"sudo mv extracted_folder /opt/appName
# appName = your app name sudo nano /usr/share/applications/appName.desktop
# appName = your app nameAnd the contents may be as follows,
[Desktop Entry]
Name=AppName
Comment=AppName Comment
Exec=/opt/appname/appNameExec
# Exec= "make sure the path to the executable file of the application"
Icon=/opt/appName/icons/folder/icon.png
# Icon= "make sure the route to the icon image from the application"
Terminal=false
Type=Application
Categories=Office;Education;sudo update-desktop-databaseAnd voila! The app has appeared in our app list!
Tested on:
- OpenSUSE 16 Leap