修复无法检测到Xubuntu中磁铁错误的URI方案

时间:2020-01-09 10:44:37  来源:igfitidea点击:

Chrome浏览器提示:

Unable to detect the URI-scheme of “magnet:?

修复无法检测"磁铁:错误"的URI方案

在Xubuntu中,可以使用以下命令在终端中使用鼠标垫:

sudo mousepad /usr/bin/xdg-open

在打开的文件中,查找以下行:

open_xfce()
{
exo-open ""
if [ $? -eq 0 ]; then
exit_success
else
exit_failure_operation_failed
fi
}

将以下行替换为以下行并保存文件:

open_xfce()
{
if (echo "" | grep -q '^magnet:'); then
transmission-gtk ""
else
exo-open ""
fi
if [ $? -eq 0 ]; then
exit_success
else
exit_failure_operation_failed
fi
}