Debian

ubuntu/debian:在類似 GNOME2 的環境中使用 bluetile?

  • January 6, 2013

debian wheezy 的安裝預設為 KDE 桌面環境。如何刪除它並切換到 GNOME 2(穩定版中使用的版本)?

我擔心如果我只安裝 gnome-core,它會安裝 GNOME 3。我可以讓 sources.list 指向某個包的舊版本嗎?

我更喜歡 GNOME 2,因為它適用於 bluetile (我不想要 MATE 或其他副本)。

我安裝了 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/

引用自:https://unix.stackexchange.com/questions/57340