Announcement

Collapse
No announcement yet.

Recommended way to start Compiz

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Re: Recommended way to start Compiz

    never had that issue
    Mark Your Solved Issues [SOLVED]
    (top of thread: thread tools)

    Comment


      #17
      Re: Recommended way to start Compiz

      Getting Compiz to autostart can be a little "twitchy" -- I've had my challenges doing that too. I have a .kderc script that (a) starts Conky and then (b) starts Compiz. I run it from Alt-F2 after the system is booted. It works more reliably this way than trying to save the script in System Settings > Advanced > Autostart.

      Comment


        #18
        Re: Recommended way to start Compiz

        dibl....

        Your kderc script - Does it use 'compiz --replace'?

        I can get this running just fine if I place an entry in the ~/.kde/Autostart directory. But I'm trying to avoid the whole kill process to get another going situation.

        Comment


          #19
          Re: Recommended way to start Compiz

          Here 'tis:
          #!/bin/bash
          sleep 15 && # 0 good for Xfce - use 20 to 30 for Gnome
          conky -c ~/Conky/conkymain &
          #sleep 0 &&
          #conky -c ~/Conky/conkyweather &
          sleep 15
          nvidia-settings -a GPUOverclockingState=1 &
          sleep 1
          nvidia-settings -a GPU2DClockFreqs=300,300 &
          sleep 1
          nvidia-settings -a GPU3DClockFreqs=713,1230 &
          sleep 1
          compiz --replace
          #fusion-icon
          #end
          The lines that begin with "nvidia-settings" turn on the overclocking option, and set the clock and memory speed for 3D effects.

          Comment


            #20
            Re: Recommended way to start Compiz

            hmm.. the rc script will start before kdm even get's established, won't it?

            Comment


              #21
              Re: Recommended way to start Compiz

              Originally posted by TheBigAmbulance
              hmm.. the rc script will start before kdm even get's established, won't it?
              No no -- this script is in my user's home folder. It doesn't run until KDM is already running (especially when I run it manually from the desktop).

              Comment


                #22
                Re: Recommended way to start Compiz

                why then am i always using
                Code:
                compiz --replace
                dibl can i get a bit of clearance on this ?
                Mark Your Solved Issues [SOLVED]
                (top of thread: thread tools)

                Comment


                  #23
                  Re: Recommended way to start Compiz

                  Originally posted by sithlord48
                  dibl can i get a bit of clearance on this ?
                  I'm not really a compiz expert, sith. As I understand things, with Kubuntu or KDE, you get the default window manager, which is kwin. So, you have your standard Kubuntu system and kwin.

                  If you install the set of Compiz packages, and assuming you have a graphics GPU that is able to support compositing and GLX, then you can change from kwin to compiz, using the command above.

                  So if you have changed to compiz, and you need to change back to kwin, you have to issue
                  Code:
                  kwin --replace
                  and that replaces compiz with kwin.

                  OK?

                  Comment


                    #24
                    Re: Recommended way to start Compiz

                    wait a min i did that wrong. i use

                    Code:
                    compiz --enable
                    Mark Your Solved Issues [SOLVED]
                    (top of thread: thread tools)

                    Comment

                    Working...
                    X