我在终端上工作很多,不喜欢打开新的标签页和新的窗口来打开我以前的工作目录。我想更改pantheon-terminal每次打开我的主目录。

我在/usr/share/glib-2.0/schemas/org.pantheon.terminal.gschema.xml中找到了以下项,并将默认值更改为false,但是我仍然得到相同的行为。

    <key name="follow-last-tab" type="b">
    <default>false</default>
    <summary>Open last active tab path on new tab.</summary>
    <description>Defines whether a new tab should have the path of the last active tab.</description>
    </key>
    <key name="remember-tabs" type="b">
    <default>false</default>
    <summary>Defines whether the terminal should remember tabs.</summary>
    <description>Defines whether the terminal should remember the last open tabs.</description>
    </key>


任何帮助将不胜感激。

评论

请参阅elementaryos.stackexchange.com/questions/2937/…

如何在“隐身模式”下使用终端的可能重复项?

#1 楼

您实际上必须在gsetting中而不是gschema中更改这些键。因此,例如使用带有以下内容的终端:
gsettings set org.pantheon.terminal.settings follow-last-tab false

评论


更好的解决方案!

–卡尔·隆达(CarlLöndahl)
16年1月12日在10:20

有趣的是,我进入了[Configuator](quassy.github.io/elementary-apps/Configurator),导航至org> pantheon> terminal> settings ....以及“ follow-last-tab”和“ remember-tabs”键已经设置为false。但是,在命令行中使用gsettings可以正常工作。

–莫恩·莫德恩
16 Jan 12'在10:29



#2 楼

解决方法:将cd ~添加到您的bashrc文件中。