#! /bin/bash
# Run the script in the root of yEd installation directory
# Tested with Ubuntu 18.04
# Create a new mime type definition file
cat >graphml+xml-mime.xml << EOL
<?xml version="1.0"?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="application/x-graphml+xml">
<comment>yEd graphml file (xml format)</comment>
<glob pattern="*.graphml"/>
<generic-icon name="x-application-graphml+xml"/>
</mime-type>
</mime-info>
EOL
# Install the new mime definition
sudo xdg-mime install graphml+xml-mime.xml
# Install icon (size 48 can be extracted from i4j_extf_2_1aawyej_k3n8ea.ico file)
sudo xdg-icon-resource install --context mimetypes --size 32 .install4j/yEd.png x-application-graphml+xml
# Append %F to yEd .desktop file so it is visible in "Open With Other Application" menu
sed -i '/Exec/ s/$/ %F/' ~/.local/share/applications/yEd\ Graph\ Editor-0.desktop
# Finally go to file manager, right click, select "Open With Other Application",
# click "View All Applications" and select yEd.
在 Ubuntu 上安装 yEd 有两种方法。
使用提供的图形安装程序
yEd 附带一个易于使用的图形安装程序,负责处理所有系统依赖项(Java,最重要的):
按着这些次序:
chmod +x yEd<...>.sh
使用或进入文件管理器的属性菜单使安装程序可执行(属性→权限→允许将文件作为程序执行)手动安装
导航到提取的文件夹并
yed.jar
在 java 中打开:要将 yEd 集成到您的系统中,您可以
.desktop
在 下创建一个启动器~/.local/share/applications
。例如:确保根据您的系统更改
Exec=
和行。Icon=
如果你想关联 yEd 的 .graphml 文件(安装程序不会自动完成),你可以使用以下脚本: