Disable Composite without restarting X

18,605

Solution 1

Found a better way to do it, just:

  1. Menu
  2. Settings
  3. Window Manager Tweaks
  4. Compositor Tab
  5. Uncheck "Enable display compositing"

I think this is better since it doesn't involve installing new application and it did help me prevent tearing when watching HD movies.

Solution 2

Use fusion-icon.

alt text

Solution 3

You can't disable an X extension while the server is running - the X protocol simply has no way to tell clients “Oh wait, that extension that I said you could use is no longer valid and you'll crash if you try to use it now.” All you can do is stop running whatever composite manager you're using (as suggested in @iamsid's answer).

Share:
18,605
Amree
Author by

Amree

Updated on September 17, 2022

Comments

  • Amree
    Amree over 1 year

    In order for me to watch HD videos without tearing, I need to disable my Composite setting in xorg.conf

    Section "Extensions"
        Option "Composite" "Disable"
    EndSection
    

    But I love my transparency, so, how do I enable and disable it without restarting X? (Preferably using command line)

    • Admin
      Admin over 8 years
      Related: This post in 2011 has answers for command line method to toggle compositing without restarting X. Tested working to this date.
    • JanKanis
      JanKanis almost 5 years
      For anyone finding this question and wanting to disable compositing permanently: In the above xorg.conf snippet the extension name should be spelled COMPOSITE to work on recent Xorgs.
  • Admin
    Admin over 13 years
    Or use "metacity--replace" for turning off composite effects (and "compiz --replace" for turning them on) ;)