我想切换到打开的浏览器窗口或在当前桌面/视口中启动新的浏览器窗口。
当我单击 Thunderbird 中的链接时,它将在现有浏览器会话/窗口中打开一个新选项卡(并在小程序栏中闪烁)。
我希望我的浏览器(Google Chrome)打开一个新会话/窗口(在当前带有 TB 的桌面中)或自动切换到带有现有打开的 Chrome 窗口的桌面。
这个功能可能很有趣,然后单击另一个应用程序(PDF-Viewer,..)中的 URL。
我可以确定整个系统所需的功能吗?
答案1
我找到了以下解决方案。首先,编辑 ~/.local/share/applications/google_chrome_my.desktop 中的文件。必须包含:
[Desktop Entry] Version=1.0 Name=Google Chrome Exec=/usr/bin/google-chrome-stable --new-window %U Terminal=false Icon=google-chrome Type=Application Categories=Network;WebBrowser; MimeType=text/html;text/xml;application/xhtml_xml;image/webp;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;
。
将此 .desktop 文件添加到您的 Applet 启动栏(拖放)。
接下来,在文件 ~/config/mimeapps.list 的 [默认应用程序] 段落中添加以下内容(但不在 ~/.local/share/applications/ 中添加):
text/html=google_chrome_my.desktop x-scheme-handler/http=google_chrome_my.desktop x-scheme-handler/https=google_chrome_my.desktop text/xml=google_chrome_my.desktop application/xhtml_xml=google_chrome_my.desktop image/webp=google_chrome_my.desktop x-scheme-handler/ftp=google_chrome_my.desktop
。
下一步注销/登录。从现在起,这必须有效。
xdg-settings set default-web-browser
在我的桌面上没有任何功能(?)。
(感谢 linux.org.ru 上的帖子:https://www.linux.org.ru/forum/desktop/12427558?lastmod=1457875649636#comment-12427623 和 https://wiki.ubuntuusers.de/MIME-Typ/#Standardanwendung-festlegen)