Skip to content

Instantly share code, notes, and snippets.

@pierremonico
Forked from aviskase/Postman.desktop
Last active April 27, 2023 11:52
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save pierremonico/70ed579cfeb38dbc58bdd7168a4af027 to your computer and use it in GitHub Desktop.
Save pierremonico/70ed579cfeb38dbc58bdd7168a4af027 to your computer and use it in GitHub Desktop.
Install Postman
#!/bin/bash
cd /tmp || exit
echo "Downloading Postman ..."
wget -q https://dl.pstmn.io/download/latest/linux?arch=64 -O postman.tar.gz
tar -xzf postman.tar.gz
rm postman.tar.gz
echo "Installing to opt..."
if [ -d "/opt/Postman" ];then
sudo rm -rf /opt/Postman
fi
sudo mv Postman /opt/Postman
echo "Creating symbolic link..."
if [ -L "/usr/bin/postman" ];then
sudo rm -f /usr/bin/postman
fi
sudo ln -s /opt/Postman/Postman /usr/bin/postman
echo "Creating .desktop file..."
if [ -e "/usr/share/applications/Postman.desktop" ];then
sudo rm /usr/share/applications/Postman.desktop
fi
sudo mv Postman.desktop /usr/share/applications/Postman.desktop
echo "Installation completed successfully."
echo "You can use Postman!"
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/opt/Postman/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
@sirkuttin
Copy link

the path for the icon is now:

/opt/Postman/app/resources/app/assets/icon.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment