Difference between revisions of "Compiz Fusion"

From CBLFS
Jump to navigationJump to search
(New page: -- Compiz Fusion -- *compiz *compiz-bcop *emerald *libcompizconfig *compiz-fusion-plugins-main *compiz-fusion-plugins-extra *[[compiz-fusion-plugins-unsuppo...)
 
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
== Compiz Fusion ==
  
-- Compiz Fusion --
+
* [[compiz]]
 +
* [[compiz-bcop]]
 +
* [[libcompizconfig]]
 +
* [[compizconfig-python]]
 +
* [[ccsm]]
 +
* [[compiz-fusion-plugins-main]]
 +
* [[compizconfig-backend-gconf]]
 +
* [[compizconfig-backend-kconfig]]
 +
* [[compiz-fusion-plugins-extra]]
 +
* [[compiz-fusion-plugins-unsupported]]
 +
* [[Emerald]]
 +
* [[simple-ccsm]]
  
*[[compiz]]
+
=== Using as the Gnome Window Manager ===
*[[compiz-bcop]]  
+
 
*[[emerald]]
+
The first thing we need is a desktop file:
*[[libcompizconfig]]
+
 
*[[compiz-fusion-plugins-main]]
+
cat > /usr/share/applications/compiz.desktop << "EOF"
*[[compiz-fusion-plugins-extra]]
+
[Desktop Entry]
*[[compiz-fusion-plugins-unsupported]]
+
Type=Application
*[[compizconfig-backend-kconfig]]
+
Encoding=UTF-8
*[[compizconfig-backend-gconf]]
+
Name=Compiz
*[[compizconfig-python]]
+
Exec=compiz ccp
*[[emerald-themes]]
+
NoDisplay=true
*[[ccsm]]
+
# name of loadable control center module
 +
X-GNOME-WMSettingsModule=compiz
 +
# name we put on the WM spec check window
 +
X-GNOME-WMName=Compiz
 +
# back compat only
 +
X-GnomeWMSettingsLibrary=compiz
 +
X-GNOME-Autostart-Phase=WindowManager
 +
X-GNOME-Provides=windowmanager
 +
X-GNOME-Autostart-Notify=true
 +
 +
[Window Manager]
 +
SessionManaged=false
 +
EOF
 +
 
 +
You can view your current window manager setting with the following command:
 +
 
 +
gconftool-2 --get /desktop/gnome/session/required_components/windowmanager
 +
 
 +
Then update the window manager GConf key with the following command:
 +
 
 +
gconftool-2 --type=string --set /desktop/gnome/session/required_components/windowmanager compiz
 +
 
 +
[[Category:Window Managers]]

Latest revision as of 15:18, 19 March 2009

Compiz Fusion

Using as the Gnome Window Manager

The first thing we need is a desktop file:

cat > /usr/share/applications/compiz.desktop << "EOF"
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=Compiz
Exec=compiz ccp
NoDisplay=true
# name of loadable control center module
X-GNOME-WMSettingsModule=compiz
# name we put on the WM spec check window
X-GNOME-WMName=Compiz
# back compat only 
X-GnomeWMSettingsLibrary=compiz
X-GNOME-Autostart-Phase=WindowManager
X-GNOME-Provides=windowmanager
X-GNOME-Autostart-Notify=true

[Window Manager]
SessionManaged=false
EOF

You can view your current window manager setting with the following command:

gconftool-2 --get /desktop/gnome/session/required_components/windowmanager

Then update the window manager GConf key with the following command:

gconftool-2 --type=string --set /desktop/gnome/session/required_components/windowmanager compiz