DEV Community

Cover image for Creating Postman Shortcut Icon in Ubuntu
Bhaumik Maan
Bhaumik Maan

Posted on

1

Creating Postman Shortcut Icon in Ubuntu

Creating a desktop icon for Postman in Ubuntu can significantly streamline your workflow and enhance your productivity. As one of the most popular API development tools, Postman is indispensable for developers and testers who require a reliable, efficient way to manage their API requests and responses.

However, the convenience of accessing this powerful tool with a single click is something many users seek. In this article, we will create a desktop icon for Postman on Ubuntu, allowing you to easily launch the application and improve your overall user experience. Whether you are a seasoned developer or a newcomer to the world of APIs, having quick access to Postman is a small tweak that everyone wants.

To create an icon and launch your Postman instance via the application launcher, follow these steps:

  • Download Postman and extract into any folder. You should see the following in your folder.

File structure

  • Open terminal and enter the following command to go to the .local/share/applications directory:
cd ~/.local/share/applications
Enter fullscreen mode Exit fullscreen mode
  • Create a Postman.desktop file in this directory using gedit/nano

Terminal

  • Paste the following contents in the Postman.desktop file:
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=/home/{username}/Documents/Postman/Postman %U
Icon=/home/{username}/Documents/Postman/app/icons/icon_128x128.png
Terminal=false
Type=Application
Categories=Development;
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;x-scheme-handler/chrome;video/webm;application/x-xpinstall;
StartupNotify=true
Actions=new-window;new-private-window;
Enter fullscreen mode Exit fullscreen mode

Replace {username} with your own username that you see in the terminal.

  • Save the file and close the terminal!

Now upon searching in applications you should see the Postman App, clicking which should open the app. You can also add it to your favourites.

TA-DA!

And that's how you do it. You've successfully created a Postman Desktop Icon to quickly access the application.

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay