当前位置: 首页>>技术教程>>正文


如何将窗口控件切换到左侧(Gnome Shell)?

, ,

问题描述

有没有方法可以将开关gnome-shell窗口按钮向左移动?我已经习惯了他们在左边,他们在右边已经抛弃了我。

(gnome shell将它们拖到了右下角)

最佳解决思路

10.10

更简单的方法是:Alt + F2gconf-editor

导航至apps→metacity→general,然后双击条目:button_layout,然后输入close,minimize,maximize:。您也可以在某一点使用spacer来添加空格。

11.04和11.10

Alt + F2gconf-editor

导航到桌面→gnome→ shell →窗口,然后双击条目:button_layout,然后输入close,minimize,maximize:。您也可以在某一点使用spacer来添加空格。

次佳解决思路

对于Ubuntu 12.04和更新版本

您将需要dconf-editor,它是dconf-tools包的一部分。先安装它:

dconf-tools

启动dconf-editor:

Alt + F2→dconf-editor

转到组织→gnome→shell→覆盖→按钮布局。将其更改为close,minimize,maximize:

无需重新启动 shell 。

注意:这也会改变覆盖模式中的取消按钮。

13.10及更高

根据一些用户,它可能需要重启一次shell。谢谢大家指出。

第三种解决思路

虽然技术上不是gnome-shell,但如果您使用的是gnome-flashback或gnome-flashback-no效果,则该键位于:

org -> gnome -> desktop -> wm -> preferences -> button-layout  

将其更改为:

close,minimize,maximize:  

应该给你你想要的。

你可以使用这个命令:

gsettings set  org.gnome.desktop.wm.preferences button-layout 'close,minimize,maximize:'

让这件事更快完成。

第四种思路

如果您使用的是Gnome Shell,并且想要左侧的窗口按钮,请使用以下命令:

dconf write /org/gnome/shell/overrides/button-layout "'close,minimize,maximize:'"

然后根据需要重新启动 shell :按Alt + F2,键入r,然后按Enter

第五种思路

如果您已安装Ubuntu Tweak,请转到“窗口管理器”并将位置从左侧更改为右侧,反之亦然。这将改变所有窗口的标题栏按钮布局,而不仅仅是侏儒 shell 。

gnome,window-buttons,ubuntu

第六种思路

Gnome版本3.10,使用13.04和13.10

如果您将Gnome升级到3.10,您可能会注意到窗饰的变化。 Gnome 3.10版本正在向所有Core应用程序中的客户端装饰(简称CSD)发展。

在这些应用程序中,关闭按钮被集成到程序窗口中,并且不使用正常的窗口装饰。

gnome,window-buttons,ubuntu

正如Web Upd8所述:

Another pretty major change in the latest GNOME 3.10 is the introduction of “header bars” or “client side decorations”. These decorations use the GTK+ toolkit and theme engine:

As you can see, the close button is now displayed inline with the toolbar which saves spaces but unfortunately it also creates an even bigger discrepancy between GNOME core apps and the other applications, because only the core GNOME apps use these client side decorations.


一些具有CSD的应用程序可以使用环境变量GTK_CSD=0(一个变量用于”try out” CSD中的小型gnome版本= 1),以获取更多关于环境变量的信息:https://help.ubuntu.com/community/EnvironmentVariables,特别是Launching desktop application with an environment variable,用于实验程序,添加类似这样的程序到启动器:

Exec=env GTK_CSD=# gedit

用1或0代替”#”打开和关闭,gedit用选择的程序

然而,在3.10中,Nautilus似乎并不适用。


Simply put

In 3.10 it’s going to have a close button at the top right no matter what[…]


所以,你可以做什么?

  • 留在Gnome的旧版本。开发仍在继续,存储库中的Gnome版本运行良好。未来可能会增加选项。

  • 将Nautilus替换为Nemo。大多数情况下,Nemo的外观和行为都像Nautilus:安装:

    1. 打开终端输入以下命令:

    2. sudo apt-get install nemo

    3. Make nemo the default file browser

第七种思路

做什么hrhnick说,除了使用这个命令,而不是:

gconftool-2 -s /desktop/gnome/shell/windows/button_layout -t String minimize,maximize,close:" where "minimize,maximize,close:

然后点击Alt + F2并键入

gnome-shell --replace

并回车

第八种思路

gnome shell的工作区窗口视图与窗口管理器使用相同的按钮布局(尽管仅用于关闭按钮)。 (relevant code)

如果使用gconf在左侧设置关闭窗口按钮,工作区视图中窗口预览上的关闭按钮也将显示在左侧。

使用gconf-editor,将/desktop /gnome /shell /windows /button_layout更改为close,minimize,maximize:和re-login以查看更改。

第九种思路

这个命令应该工作:gconftool-2 --set /apps/metacity/general/button_layout --type string "menu:minimize,maximize,close"(假设你想从左到右移动它们,这是我从你的问题中解释的……假设从左到左移动是一个错字:-))。

第十种思路

17.04和17.10(侏儒3.22)

开始是在这个答案:https://askubuntu.com/a/113995/286561

You will need dconf-editor, which is part of the dconf-tools package. Install it first:

dconf-tools

Start dconf-editor:

Alt+F2 → dconf-editor

但关键是/org/gnome/desktop/wm/preferences/button-layout,默认是:appmenu:cloe,我已将其更改为close,minimize,maximize:appmenu。 (appmenu似乎没有效果。)

gnome,window-buttons,ubuntu

我想在终端上做这件事,你可以这样做:https://askubuntu.com/a/377811/286561

gsettings set  org.gnome.desktop.wm.preferences button-layout 'close,minimize,maximize:'

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/1010.html,未经允许,请勿转载。