[compiz-standalone] emerald & fusion plante X (en cours)
Publié : dim. 02 févr. 2014, 12:03
Depuis hier je tente d'installer compiz en standalone. Voici mon ~/.xinitrc ainsi que mon ~/.config/compiz/autostart.sh.
.xinitrc
autostart.sh
J'ai du commenter la ligne fusion-icon car elle me crash le serveur x par contre si je rajoute l'option -n a fusion-icon (celle qui permet de lancer fusion sans windows manager) ca fonctionne mais dès que je veux raffraichir le WM ou changer de WM ca plante x
Quelqu'un aurait-il une petite idée?
.xinitrc
Code : Tout sélectionner
GNU nano 2.2.6 Fichier : .xinitrc
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choice
exec dbus-launch /home/farfadet/.config/compiz/autostart.sh
Code : Tout sélectionner
GNU nano 2.2.6 Fichier : .config/compiz/autostart.sh
# This shell script is run before Compiz launches.
# Environment variables set here are passed to the Compiz session.
# Set a background color
BG=""
if which hsetroot >/dev/null 2>&1; then
BG=hsetroot
else
if which esetroot >/dev/null 2>&1; then
BG=esetroot
else
if which xsetroot >/dev/null 2>&1; then
BG=xsetroot
fi
fi
fi
test -z $BG || $BG -solid "#202020"
# D-bus
if which dbus-launch >/dev/null 2>&1 && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval `dbus-launch --sh-syntax --exit-with-session`
fi
# Run XDG autostart things. By default don't run anything desktop-specific
# See xdg-autostart --help more info
DESKTOP_ENV="COMPIZ"
if which /usr/bin/xdg-autostart >/dev/null 2>&1; then
/usr/bin/xdg-autostart $DESKTOP_ENV
fi
#fusion-icon &
tint2 &
terminator &
exec compiz ccp
Quelqu'un aurait-il une petite idée?