Linux备忘录:创建IDEA快捷方式
Posted zeroisbug
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux备忘录:创建IDEA快捷方式相关的知识,希望对你有一定的参考价值。
Linux备忘录:创建IDEA快捷方式
1.进入共用的快捷方式目录:
cd /usr/share/applications #dir of desktop shortcut
2.创建快捷方式的文件:
sudo touch intellij-idea.desktop # creat a shortcut in this dir
3.使用root权限编辑: sudo vim intellij-idea.desktop
[Desktop Entry]
Name=IntelliJ IDEA
Exec=sh /home/zero/soft/idea-IU-171.3780.107/bin/idea.sh
Comment=IntelliJ IDEA
Icon=/home/zero/soft/idea-IU-171.3780.107/bin/idea.png
Type=Application
Terminal=false
Encoding=UTF-8
把 /home/zero/soft/idea-IU-171.3780.107/
改成你自己的安装目录
4.为该快捷方式添加执行权限:
sudo chmod +x /usr/share/applications/intellij-idea.desktop
5.把创建好的快捷方式复制到桌面:
cp intellij-idea.desktop /home/zero/Desktop/
以上是关于Linux备忘录:创建IDEA快捷方式的主要内容,如果未能解决你的问题,请参考以下文章
在 Visual Studio 中创建构造函数的代码片段或快捷方式