LinuxQuestions.org
Visit Jeremy's Blog.
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 05-31-2014, 11:32 PM   #1
ymf331
Member
 
Registered: May 2014
Posts: 50

Rep: Reputation: Disabled
having problems with compiz standalone


well, the nvidia driver ncurses installer deleted a file i needed for other things, so i reinstalled whatever package it was from and installed the driver/module from the -current git repo from sbopkg. i followed a few guides online, disabled nouveau and set up xorg.conf to look like so:

Code:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 337.25  (buildmeister@swio-display-x64-rhel04-10)  Tue May 27 13:05:19 PDT 2014


Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
    FontPath        "/usr/lib64/X11/fonts/misc/:unscaled"
    FontPath        "/usr/lib64/X11/fonts/100dpi/:unscaled"
    FontPath        "/usr/lib64/X11/fonts/75dpi/:unscaled"
    FontPath        "/usr/lib64/X11/fonts/misc/"
    FontPath        "/usr/lib64/X11/fonts/Type1/"
    FontPath        "/usr/lib64/X11/fonts/Speedo/"
    FontPath        "/usr/lib64/X11/fonts/100dpi/"
    FontPath        "/usr/lib64/X11/fonts/75dpi/"
    FontPath        "/usr/lib64/X11/fonts/cyrillic/"
    FontPath        "/usr/lib64/X11/fonts/TTF/"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "AddARGBGLXVisuals" "True"
    SubSection     "Display"
        Viewport	0 0
		Depth       24
		Modes		"1440x900"
    EndSubSection
EndSection

Section "Module"
	Load			"extmod"
	Load			"glx"
EndSection

Section "Extensions"
    Option         "Composite" "Enable"
EndSection
i installed all of the slackbuilds that go with compiz except the one for kde (didn't install k) from the same repo as the drivers. i haven't tried any other window managers, but fluxbox starts just fine. anyway, then i copied the config files for compiz-boxmenu to my user's root directory and put a .xinitrc there as well to which i replaced the exec fluxbox part with:

Code:
emerald &
exec fusion-icon
i went through ccsm and added the following: commands, desktop cube, 3d windows, cube reflection and deformation, window decoration, splash, jpg, png, svg, text, dbus, error notifications, mouse polling, wallpaper, move window, resize window, and tile. nothing super-fancy but enough to be functional i think.

anyway, hopefully i covered whatever i screwed up, because when i startx all i have is a black screen with a mouse pointer. can anyone who's been through all this tell me what i did wrong? i've been through everything google could find for me covering the issue.

Last edited by ymf331; 05-31-2014 at 11:50 PM. Reason: cleaning up typos and clarifying things etc etc
 
Old 06-01-2014, 01:00 AM   #2
Diantre
Member
 
Registered: Jun 2011
Distribution: Slackware
Posts: 515

Rep: Reputation: 234Reputation: 234Reputation: 234
I was curious and created a .xinitrc (copied from /etc/X11/xinit/xinitrc.fluxbox) loading only emerald and fusion-icon instead of fluxbox as you mention. I got the black screen with the pointer you described.

Then it occurred to me that it would be useful having the fusion-icon notification icon since it provides a "Reload Window Manager" and other options, which means that I needed a panel that provides a notification area such as xfce4-panel or cairo-dock. I tried first cairo-dock then xfce4-panel, both work ok.

Code:
cairo-dock &
exec fusion-icon
Once I got the notification area, I ran ccsm from the fusion-icon menu, enabled the needed plugins and now it works. Maybe you need to run ccsm while compiz is running? Not really sure if that's the cause of the problem, but that's what I did.

I don't have compiz-boxmenu installed so I cannot comment on that one. Also, I found good information here.

Hope that helps.
 
1 members found this post helpful.
Old 06-01-2014, 11:37 AM   #3
ymf331
Member
 
Registered: May 2014
Posts: 50

Original Poster
Rep: Reputation: Disabled
It does. If I can't get boxmenu configured then I may try a drop down terminal emulator. I'm just glad it's not the nvidia driver.
 
Old 06-01-2014, 11:51 AM   #4
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,979

Rep: Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614Reputation: 4614
I keep reading Compton is superior to Compiz and I know KWin is now superior for me than either was. It might be worth a try for you as well.
 
1 members found this post helpful.
Old 06-01-2014, 05:47 PM   #5
ymf331
Member
 
Registered: May 2014
Posts: 50

Original Poster
Rep: Reputation: Disabled
i am considering kwin with a window decorator. I like how I set up a bunch of undecorated terminals to autostart with fluxbox. I only want to add the neat cylinder effect for workspace switching. is that possible with cairo or compton?
 
Old 06-01-2014, 06:34 PM   #6
Diantre
Member
 
Registered: Jun 2011
Distribution: Slackware
Posts: 515

Rep: Reputation: 234Reputation: 234Reputation: 234
Cairo-dock is only a panel/launcher, probably you meant compiz. If so, then yes, compiz has a few plugins for workspace switching. I don't use compton nor kwin, so I just don't know about those.
 
1 members found this post helpful.
Old 06-01-2014, 11:42 PM   #7
ymf331
Member
 
Registered: May 2014
Posts: 50

Original Poster
Rep: Reputation: Disabled
cairo is a composite manager similar to compton and... xcompmgr i think it was called? just runs in a separate process so can be used with a different window manager. i don't think they have the workspace animations though. you did solve the problem the thread's about. i was in a hurry this morning but i'll go ahead and mark this as solved. thanks much.

Last edited by ymf331; 06-01-2014 at 11:57 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Standalone in Slackware? Konphine Slackware 11 02-03-2012 02:41 AM
Compiz Standalone w/ XFCE4 Panel Icons Konphine Linux - Newbie 1 01-19-2012 02:19 AM
distro that uses standalone compiz by default jordanwb Linux - Distributions 2 08-14-2011 11:03 PM
Compiz Standalone......black screen :) gunzzz5930 Arch 1 02-25-2011 08:39 PM
[SOLVED] using compiz-fusion as a standalone window manager trademark91 Slackware 4 01-15-2011 07:39 PM

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

All times are GMT -5. The time now is 04:13 AM.

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