Sharing

2013年5月27日 星期一

Multiple Connection Manager

在 Window 上

在 Linux 上, 我找到有兩個可以使用
          中文介紹
          http://www.openfoundry.org/tw/foss-programs/8188-pacmanager

我自己選擇使用 Gnome Connection Manager, PAC 的功能太多, 一時間覺得有點眼光瞭亂, 不如就先用陽春的 GCM, 另一個選擇他的理由是它是用 Python 寫的, PAC 是用Perl 寫的, 對 Perl 實在沒什麼好感。

2013/05/31 Update:
寫信給 kuthulu.com , 想不到很快的就得到回答

editing the file /usr/share/gnome-connection-manager/gnome-connection-manager.glade

look for the following items:
menuitem1, menuitem7, menuitem5, menuitem6, menuitem4

and change
<property name="use_underline">True</property>
to
<property name="use_underline">False</property>

下方是我改過的檔案內容,改過之後 alt+f, alt+b 就可以使用了!
$ grep -P 'id=\"menuitem\d\"' /usr/share/gnome-connection-manager/gnome-connection-manager.glade -A 3
            <widget class="GtkMenuItem" id="menuitem1">
              <property name="visible">True</property>
              <property name="label" translatable="yes">_Archivo</property>
              <property name="use_underline">False</property>
--
            <widget class="GtkMenuItem" id="menuitem7">
              <property name="visible">True</property>
              <property name="label" translatable="yes">_Editar</property>
              <property name="use_underline">False</property>
--
                <widget class="GtkMenuItem" id="menuitem9">
                  <property name="visible">True
                  <property name="label" translatable="yes">Comandos personalizados</property>
                  
--
            <widget class="GtkMenuItem" id="menuitem5">
              <property name="visible">True</property>
              <property name="label" translatable="yes">_Ver</property>
              <property name="use_underline">False</property>
--
            <widget class="GtkMenuItem" id="menuitem6">
              <property name="visible">True</property>
              <property name="label" translatable="yes">_Servidores</property>
              <property name="use_underline">False
--
            <widget class="GtkMenuItem" id="menuitem4">
              <property name="visible">True</property>
              <property name="label" translatable="yes">Ay_uda</property>
              <property name="use_underline">False</property>


沒有留言: