Package Details: compiz 0.9.14.2-11

Git Clone URL: https://aur.archlinux.org/compiz.git (read-only, click to copy)
Package Base: compiz
Description: Composite manager for Aiglx and Xgl, with plugins and CCSM
Upstream URL: https://launchpad.net/compiz
Licenses: MIT, GPL-2.0-or-later, LGPL-2.1-or-later
Conflicts: ccsm, compiz-bcop, compiz-core, compiz-fusion-plugins-experimental, compiz-fusion-plugins-extra, compiz-fusion-plugins-main, compiz-gtk, compizconfig-python, libcompizconfig, simple-ccsm
Provides: ccsm, compiz-bcop, compiz-core, compiz-plugins-extra, compiz-plugins-main, compizconfig-python, libcompizconfig
Submitter: None
Maintainer: xiota
Last Packager: xiota
Votes: 168
Popularity: 0.44
First Submitted: 2014-08-04 13:22 (UTC)
Last Updated: 2025-05-01 08:15 (UTC)

Required by (27)

Sources (10)

Latest Comments

1 2 3 4 5 6 .. 57 Next › Last »

stanford.mings commented on 2025-05-01 23:58 (UTC)

Got it ! (sudo pacman -R compiz-git-debug ) Worked ! Thanks

xiota commented on 2025-05-01 23:26 (UTC)

Manually uninstall all *-debug packages. They're generally not needed, but some AUR helpers install, and don't uninstall, them.

stanford.mings commented on 2025-05-01 23:13 (UTC)

Getting this when trying to makepkg -si pkgbuild

error: failed to commit transaction (conflicting files) compiz-debug: /usr/lib/debug/usr/bin/compiz.debug exists in filesystem (owned by ....... ....... compiz-debug: /usr/lib/debug/usr/lib/compiz/libmousepoll.so.debug exists in filesystem (owned by compiz-git-debug) compiz-debug: /usr/lib/debug/usr/lib/compiz/libmove.so.debug exists in filesystem (owned by compiz-git-debug) compiz-debug: /usr/lib/debug/usr/lib/comp

sushi2503 commented on 2025-05-01 09:11 (UTC) (edited on 2025-05-01 09:12 (UTC) by sushi2503)

Thanks, it compiles fine and sounds functional.

xiota commented on 2025-05-01 08:19 (UTC)

I've made adjustments so it builds, but don't know if it's actually functional.

sushi2503 commented on 2025-05-01 06:14 (UTC) (edited on 2025-05-01 06:28 (UTC) by sushi2503)

Since yesterday's arch update compiz compilation fails with: [524/894] Building CXX object plugins/scale/CMakeFiles/scale.dir/src/scale.cpp.o ninja: build stopped: subcommand failed. compiz - exit status 4

piotrv commented on 2025-03-31 16:48 (UTC)

After todays update, no compiling issues and without suggested PKGBUILD alterations , working fine.

vicbis commented on 2025-03-30 23:05 (UTC) (edited on 2025-03-30 23:17 (UTC) by vicbis)

The same with me. Just to try it out, commented out the 'offending' line to see what happens.

vicb@emilia [ /usr/lib/python3.13/site-packages ]$ diff -u ccm-orig ccm
Common subdirectories: ccm-orig/pycache and ccm/pycache
diff -u ccm-orig/Settings.py ccm/Settings.py
--- ccm-orig/Settings.py 2025-03-31 09:49:05.099361705 +1100
+++ ccm/Settings.py 2025-03-31 09:49:34.154573689 +1100
@@ -115,7 +115,7 @@
label.set_markup(style % desc)
label.props.xalign = 0
label.set_size_request(160, -1)
- label.props.wrap_mode = Gtk.WrapMode.WORD
+# label.props.wrap_mode = Gtk.WrapMode.WORD
label.set_line_wrap(True)
self.Label = label
diff -u ccm-orig/Utils.py ccm/Utils.py
--- ccm-orig/Utils.py 2025-03-31 09:49:05.099402391 +1100
+++ ccm/Utils.py 2025-03-31 09:49:36.475130397 +1100
@@ -174,7 +174,7 @@
def init(self, value = "", wrap = 160):
Gtk.Label.init(self, label=value)
self.props.xalign = 0
- self.props.wrap_mode = Gtk.WrapMode.WORD
+# self.props.wrap_mode = Gtk.WrapMode.WORD
self.props.max_width_chars = 20;
self.set_line_wrap(True)
self.set_size_request(wrap, -1)

Seemed to work... Don't know fully yet what the consequences of this change be. Getting other warnings, probably unrelated.

vicb@emilia [ ~ ]$ ccsm
(ccsm:9483): Gtk-WARNING : 09:50:50.032: Theme parsing error: gtk.css:11:26: The style property GtkRange:slider-width is deprecated and shouldn't be used anymore. It will be removed in a future version
(ccsm:9483): Gtk-WARNING
: 09:50:50.032: Theme parsing error: gtk.css:12:26: The style property GtkRange:stepper-size is deprecated and shouldn't be used anymore. It will be removed in a future version
compizconfig - Info: Backend : ini
compizconfig - Info: Integration : true
compizconfig - Info: Profile : default

ArchLinuxUser commented on 2025-03-30 15:03 (UTC)

CCSM doesn't start

compizconfig - Info: Backend : ini
compizconfig - Info: Integration : true
compizconfig - Info: Profile : default
Traceback (most recent call last):
File "/usr/sbin/ccsm", line 126, in <module>
mainWin = ccm.MainWin(context, plugin, category)
File "/usr/lib/python3.13/site-packages/ccm/Window.py", line 55, in init
self.MainPage = MainPage(self, self.Context)
^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/ccm/Pages.py", line 1149, in init
pluginWindow = PluginWindow(self.Context)
File "/usr/lib/python3.13/site-packages/ccm/Widgets.py", line 1641, in init
category_box = CategoryBox(context, category, plugins, i)
File "/usr/lib/python3.13/site-packages/ccm/Widgets.py", line 1515, in init
label = Label ('', -1)
File "/usr/lib/python3.13/site-packages/ccm/Utils.py", line 177, in init
self.props.wrap_mode = Gtk.WrapMode.WORD
^^^^^^^^^^^^^^^^^^^^
TypeError: expected enumeration type PangoWrapMode, but got GtkWrapMode instead