目 录CONTENT

文章目录

Linux下安装postman并创建桌面图标

iuxt
2022-11-26 / 0 评论 / 1 点赞 / 519 阅读 / 108 字

首先下载安装包

登录官网: https://www.postman.com/downloads/

image-1669458023972

解压到安装目录

mkdir ~/app
tar xf postman-linux-x64.tar.gz -C ~/app/

创建图标

图标路径和可执行文件路径需要修改成你的真实路径

cat > ~/.local/share/applications/postman.desktop <<-EOF
[Desktop Entry]
Type=Application
Name=Postman
Icon=/home/iuxt/app/Postman/app/icons/icon_128x128.png
Exec="/home/iuxt/app/Postman/Postman" %f
Comment=网络调试工具
Categories=Development;
Terminal=false
EOF
1

评论区