LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-28-2011, 07:18 AM   #1
qlands
Member
 
Registered: Sep 2010
Posts: 67

Rep: Reputation: 0
Unhappy GSB v2.30 without xinitrc.compiz-gnome!


Hi,

I just downloaded ans installed GNOME SlackBuild v2.30 with lynx --source http://gnomeslackbuild.org/net-install | bash . All went well and finished without error, however it did not create xinitrc.compiz-gnome!

I downloaded and installed xinitrc.compiz-gnome from a GSB v2.30 repository but when I start X with gnome the windows do not have border!!!

Please help!

Thanks,
Carlos.
 
Old 03-28-2011, 09:27 AM   #2
kite
Member
 
Registered: Aug 2003
Location: Shenzhen, China
Distribution: Slackware
Posts: 306

Rep: Reputation: 47
I think you need to tweak the gnome compiz setting. Try to turn off some effects.
 
Old 03-28-2011, 03:53 PM   #3
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,683

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
Did you enable "Window Decorations" in ccsm?
 
Old 03-29-2011, 02:07 AM   #4
qlands
Member
 
Registered: Sep 2010
Posts: 67

Original Poster
Rep: Reputation: 0
Hi,

Where do I turn off some effects? or enable/disable "Window Decorations" in ccsm?

I don't see any menu about compiz. When I try to access the windows manager I get a message saying: "Window manager compiz has not registered a configuration tool"

As I said the installation did not create xinitrc.compiz-gnome! Any idea why?
 
Old 03-29-2011, 02:16 AM   #5
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,683

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
assuming you've installed ccsm, just launch from start bar or in terminal "ccsm"
see screenshot for plugin

I don't know about xinitrc.compiz-gnome so I can't really help there. You could try adding fusion-icon to your autostart folder, thats one way to start compiz automatically.
Attached Thumbnails
Click image for larger version

Name:	ccsm.jpg
Views:	16
Size:	71.1 KB
ID:	6569  

Last edited by Daedra; 03-29-2011 at 02:18 AM.
 
Old 03-29-2011, 02:53 AM   #6
qlands
Member
 
Registered: Sep 2010
Posts: 67

Original Poster
Rep: Reputation: 0
Hi,


I just notice that the installation command lynx --source http://gnomeslackbuild.org/net-install | bash said "Compiz will be excluded" But it does not say why!!!

Thus, I don't have compiz!

Any idea why the net-install exclude Compiz!!!?

Many thanks,
Carlos.
 
Old 03-29-2011, 03:15 AM   #7
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,683

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
Well the base compiz package is in the default slackware install. You can grab the rest of the packages you need over at www.slackbuilds.org. Keep in mind though you need to make sure you have 3d acceleration working before you can use compiz.
 
Old 03-29-2011, 04:55 AM   #8
linuxs64
Member
 
Registered: Jun 2010
Posts: 116

Rep: Reputation: 47
Here's my copy, from GSB ver. 2.30 install:

Quote:
#!/bin/sh
#
# GNOME xinitrc Session script.
# Based on:
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
#
# Changelog:
#
# Added ConsoleKit support (2008-10-30) stevek
# Remove unneeded user started dbus session (2008-03-28) stevek
# Add export to XDG_CONFIG_DIRS (2008-03-19) stevek
# Inital version (2008-01-17) stevek
#

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/lib64/X11/xinit/.Xresources
sysmodmap=/usr/lib64/X11/xinit/.Xmodmap

## Default Session Settings
GNOME_SESSION_SETTINGS=""

## Compiz GNOME
# Change default window manager to compiz instead of metacity
export WINDOW_MANAGER="compiz"

## GNOME XDG Menu Path
# We keep the GNOME menu templates separate from KDE so the two
# don't interfere with each other. This path may be extended to
# include the KDE menu path /etc/kde/xdg if the user wishes.
export XDG_CONFIG_DIRS=/etc/xdg:/etc/gnome/xdg

# Merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi

## Use ssh-agent if available
if [ -x /usr/bin/ssh-agent ]; then
GNOME_SESSION_SETTINGS="$GNOME_SESSION_SETTINGS /usr/bin/ssh-agent"
fi;

## Use Seahorse if available
if [ -x /usr/bin/seahorse-agent ]; then
GNOME_SESSION_SETTINGS="$GNOME_SESSION_SETTINGS /usr/bin/seahorse-agent --execute"
fi;

## Use ConsoleKit if available
if [ -z "${XDG_SESSION_COOKIE}" -a -x /usr/bin/ck-launch-session ]; then
CK_SESSION="/usr/bin/ck-launch-session"
fi;

# Start the window manager
exec $GNOME_SESSION_SETTINGS $CK_SESSION gnome-session
 
Old 03-29-2011, 07:25 AM   #9
michael.conner
LQ Newbie
 
Registered: Mar 2011
Posts: 11

Rep: Reputation: 0
I had the same problem when I installed GSB this weekend. I eventually got it working on my 13.1 install by replacing the Slackware-native compiz with the GSB one (compiz-0.8.6-i486-2gsb) and also installing compizconfig-backend-gconf-0.8.4-i486-2gsb. After that and setting options in CCSM, the xinitrc.compiz-gnome file appeared at the bottom of the xwmconfig list.

(I *don't* know whether replacing the Slackware package with the GSB one and installing the backend file was the right thing to do or if it even helped; I just know that it worked afterwards. YMMV.)
 
Old 03-29-2011, 08:17 AM   #10
qlands
Member
 
Registered: Sep 2010
Posts: 67

Original Poster
Rep: Reputation: 0
Yes! After removing the old compiz and installing compiz-0.8.6-i486-2gsb . Compiz works. I had to remove the kde dependencies from the package as I did not install KDE with slackware.

So, I installed GSB + all compiz packages from www.slackbuilds.org + compiz-0.8.6-i486-2gsb.

Many thanks to all.

Carlos.

Last edited by qlands; 03-29-2011 at 08:24 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Compiz 9.2.1 working with Slack64-13.1, GSB gnome, Alien Multi-Lib, grub 0.98? lesechang Slackware 8 02-10-2011 08:15 AM
error with gnome slack build (GSB) rody Slackware 6 01-19-2011 03:59 PM
[SOLVED] gsb compiz not working ? 1467 Slackware 12 11-01-2010 06:33 PM
GSB Gnome/Compiz crashing slack 12 Heliades Linux - Desktop 0 03-24-2008 04:45 AM
GSB [Gnome Slackbuild] Xian Slackware 27 03-12-2005 07:53 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:41 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration