|
sylpheed-jp:1051
From: Saito Minoru <aleut@xxxxxxxxxx>
MIMEウィンドウでの添付ファイルを開く方法に関する要望です。
[アプリケーションから開く]ダイアログでの[コマンド入力]
は、あらかじめ登録済みにしたアプリケーションをプルダウン
で選べるようにするのはいかがでしょうか?
あるいはダイアログではなくコンテキストメニューの枝から、
アプリケーションから開く(W)___ モジラ
|_ アクロバット
|_ Gnumeric
|_ 一太郎 Ark
|_ XMMS
|_ TiMidity
|_ The Gimp
といったように任意のアプリケーションに渡せたら便利ではな
いかと思いました。gqview に、ほぼ同じ方法がありました。
今は以下のようにデフォルトの gedit を netscape に換え、
plugin の自動再生・表示を併用しています。
--- さいとう みのる -- aleut@xxxxxxxxxx
--- src/mimeview.c
+++ src/mimeview.c
@@ -776,7 +776,7 @@
(_("Open with"),
_("Enter the command line to open file:\n"
"(`%s' will be replaced with file name)"),
- "gedit '%s'");
+ "netscape -remote 'openURL(%s,raise)'");
if (cmd) {
mimeview_view_file(filename, partinfo, cmd);
g_free(cmd);
|