Installing Websites as Web App on Ubuntu Based OS

In this blog, I am going to summarize how to create a web app on Ubuntu Based Operating System.
Steps Required:-
Firstly we need to find your user-name (if you know the username skip this step)
whoamiFor installing the web app we need the following values
APP_NAME, APP_URL, ICON_ABSOLUTE_PATH
PS:- I will take the example of notion in this blogOur next step is to get a Icon png or svg file. For that you can scroll through the internet to find the app icon of your app. Once, you get that icon we will use
wgetto download the icons and store it intoIcon=/home/username/.local/share/icons/notion.pngwget ICON_URL -O ~/.local/share/icons/notion.pngNow we will create a
.desktopfile and edit it using nano editornano ~/.local/share/applications/notion.desktop[Desktop Entry] Name=Notion Exec=brave --app=https://notion.so Icon=/home/username/.local/share/icons/notion.png Terminal=false Type=Application Categories=Office;Press
Ctrl + Othen pressEnter
Then pressCtrl + XNow using
chmodgive permission to all appschmod +x ~/.local/share/applications/*.desktop update-desktop-database ~/.local/share/applicationsLog In → Log out
This will help you reset your GNOME Launcher and hopefully now you will able to see your app icon in the applications section

