红联Linux门户
Linux帮助

ubuntu建立qt的默认打开方式

发布时间:2016-05-07 15:10:30来源:linux网站作者:yehuohan

更改文件的默认方式很容易,右键属性就可以了。
然而有时候程序装在了”~/”下时,右键属性时,就找不到所需要的程序了,比如qt。设置pro文件默认打开方式为qtcreator的方法如下:


建立软链接:

sudo -s ~/Qt5.6.0/Tools/QtCreator/bin/qtcreator /usr/local/bin/qtcreator


建立qtcreator.desktop

sudo vim /usr/share/applications/qtcreator.desktop


复制以下内容:

[Desktop Entry]
Name = Qt Creator
Comment = Open qt pro file
Exec = qtcreator %U
Terminal = false
StartupNotify = true
X-MultipleArgs = false
Type = Application
Categories = Utility;
Icon = /home/yehuohanxing/MyApps/Qt560/qt_logo.png
// 软件图标位置,可以自己选一个png图像,把png图像的绝对路径放这就可以。


本文永久更新地址:http://www.linuxdiyf.com/linux/20419.html