ubuntu/debian:在类似 GNOME2 的环境中使用 bluetile?

ubuntu/debian:在类似 GNOME2 的环境中使用 bluetile?

debian wheezy 的安装默认为 KDE 桌面环境。如何删除它并切换到 GNOME 2(稳定版中使用的版本)?

我担心如果我只安装 gnome-core,它就会安装 GNOME 3。我可以让 resources.list 指向某个软件包的旧版本吗?

我更喜欢 GNOME 2,因为它与 bluetile 配合得很好(我不想要 MATE 或其他副本)

答案1

我安装了 MATE,它看起来就像 GNOME 2。Bluetile 也运行良好,但登录后它没有开始运行。这是解决方案我在网上查到:

添加这两个文件是一种可能的解决方案:

/usr/share/xsessions/mate-bluetile-session.desktop

[Desktop Entry]
Encoding=UTF-8
Name=MATE + Bluetile
Comment=Tiling window manager
Exec=mate-bluetile-session
Icon=bluetile.png
Type=XSession

/usr/bin/mate-bluetile-session

#!/bin/bash

mateconftool-2 --type bool --set /apps/caja/preferences/show_desktop False
mateconftool-2 --type string \
    --set /desktop/mate/session/required_components/windowmanager bluetile
exec /usr/bin/mate-session

我不确定为什么我引用的人决定禁用桌面,我的设置为 True。确保 /usr/bin/mate-bluetile-session 可执行。然后,您应该能够在登录时从选项列表中选择“MATE + Bluetile”。

我发现的第二个问题是运行应用程序对话框没有出现 win-p。我安装了 gexec,将其映射到 win+p,并将 bluetile 快捷方式更改为 Mod1+p。

另一个解决方案:安装 grun 并将其映射到 win+p。 Grun 似乎是更传统的运行应用程序对话框。

相关的:

  1. https://unix.stackexchange.com/questions/57357/run-application-dialog-in-gnome2-alt-f2-without-gnome-panel

  2. http://darkness.codefu.org/wordpress/2004/07/popping-up-the-gnome-run-application-dialog-from-a-script/

相关内容