设置Linux Qt文件默认打开方式为QtCreator

时间:2021-10-07 01:37:14

Linux自定义文件打开方式也可参照文本

抱歉,本文前段时间写的ubuntu下的Qt工程文件默认打开方式是不好用的,因为其他的文本文件也会受到影响,强迫症患者,每次打开Qt工程都是先打开QtCreator然后在open project这样当文件夹路径比较深时候很烦人,于是bing了一下,就有了此文


亲测可用!!!! 记住一点:技术问题千万不要百度,最好google起码必应www.bing.com

文章参考

https://linux.die.net/man/1/xdg-mime

https://askubuntu.com/questions/183089/default-program-for-opening-pro-qt-project-files


在linux安装Qt后默认的工程文件.pro是用gedit打开的,而且比较恶心的是右键打开后还选择不了,网上的不少方法要么设置后影响到一般文本文件的打开,要不没有用,根本原因是:linux将.pro文件作为一般的text/plain来处理了


现在记录设置步骤

1.建立一个.xml文件,文件名格式必须为xxx-xxx.xmlDigiaQt-QtProject.xml,内容如下:

<?xml version='1.0'?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="text/qt">
    <comment>Qt Project Files</comment>
    <glob pattern="*.pro"/>
</mime-type>
</mime-info>


2.命令行输入 sudo xdg-mime install DigiaQt-QtProject.xml

其中install 为第一步中的文件名


3.编辑/usr/share/applications/defaults.list 文件,添加以下内容 

text/qt=DigiaQt-qtcreator-community.desktop



其中第一步和第二步必须有,第三步如果还是双击后不是QtCreator打开.pro文件在执行吧


这里解释下DigiaQt-qtcreator-community.desktop 在/usr/share/applications/目录下,为Qt安装时候自动生成的,如果没有请自行建立该文件

我的内容如下:

[Desktop Entry]
Type=Application
Exec=/opt/Qt5.9.1/Tools/QtCreator/bin/qtcreator
Name=Qt Creator (Community)
GenericName=The IDE of choice for Qt development.
Icon=QtProject-qtcreator
StartupWMClass=qtcreator
Terminal=false
Categories=Development;IDE;Qt;
MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.qt.qmakeprofile;application/vnd.qt.xml.resource;text/x-qml;text/x-qt.qml;text/x-qt.qbs;