-
-
Save khuongln-1346/eae48c022971ddcd8f551f567e123099 to your computer and use it in GitHub Desktop.
Revisions
-
pmkay revised this gist
Apr 27, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Name=Postman Exec=postman # Before v6.1.2 # Icon=/opt/Postman/resources/app/assets/icon.png Icon=/opt/Postman/app/resources/app/assets/icon.png Terminal=false Type=Application Categories=Development; -
ba11b0y revised this gist
Nov 11, 2019 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,9 @@ Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux Although I highly recommend using a snap `sudo snap install postman` #### Installing Postman ```sh -
ba11b0y revised this gist
Nov 11, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -23,7 +23,9 @@ cat > ~/.local/share/applications/postman.desktop <<EOL Encoding=UTF-8 Name=Postman Exec=postman # Before v6.1.2 # Icon=/opt/Postman/resources/app/assets/icon.png Icon=/opt/Postman/app/resources/app/assets/icon.png Terminal=false Type=Application Categories=Development; -
ba11b0y created this gist
Nov 25, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ Since Chrome apps are now being depracated. Download postman from https://dl.pstmn.io/download/latest/linux #### Installing Postman ```sh tar -xzf Postman-linux-x64-5.3.2.tar.gz ``` If any version is installed before, remove it. ```sh sudo rm -rf /opt/Postman ``` Move Postman ```sh sudo mv Postman /opt/Postman ``` Create a symbolic link ```sh sudo ln -s /opt/Postman/Postman /usr/bin/postman ``` Create a desktop file ``` cat > ~/.local/share/applications/postman.desktop <<EOL [Desktop Entry] Encoding=UTF-8 Name=Postman Exec=postman Icon=/opt/Postman/resources/app/assets/icon.png Terminal=false Type=Application Categories=Development; EOL ``` Remove the tar: ```sh rm Postman-linux-x64-5.3.2.tar.gz ```