Dear all,
Everything seems to be working fine with Marco and the Compton GPU compositor.
However, I am not a fan of shadows.
Can I disable them somehow?
Yours,
Robert
Dear all,
Everything seems to be working fine with Marco and the Compton GPU compositor.
However, I am not a fan of shadows.
Can I disable them somehow?
Yours,
Robert
After using Marco and the Compton GPU compositor for a while, I noticed that most windows have properly subtle shadows which I can live with.
However, my concern is the shadow caused for the Albert quick launcher box.
Why does this window have such a much bigger shadow around it than all the other windows?
Indeed you can . IDK from mate tweak wath config does compton read but withough setting it mate-tweak it reads ~/.config/compton.conf . In the config you can specify witch windows you donât wanât to have a shadow on like this :
shadow-exclude = [
âname = âNotificationââ,
âclass_g = âConkyââ,
âclass_g ?= âNotify-osdââ,
âclass_g = âCairo-clockââ,
â_GTK_FRAME_EXTENTS@:câ
];
or you can disable all shadows by chaning or adding :
shadow= false;
You can see default config for example in :
/etc/xdg/compton.conf
Dear @IvCHo,
Thank you very much!
I followed your advice and added shadow=false;
to the config file in ~/.config/compton.conf
and rebooted my system.
However, windows still show a shadow.
Why could that be?
Well I saw the content of the marco-compton script from mate-tweak .
It appears it is setting the default config as
marco-compton.conf in ~/.config/
So if you set Window manager in mate-tweak to
marco (compton gpu compositor) then you should rename
compton.conf to marco-compton.conf
Also you donât have to restart the system for changes to take effect just
open mate-tweak and set the wm to marco (no composite) then back to marco (compton gpu composite)
@IvCHo, thank you so much!
I was finally able to disable all shadows with the following ~/.config/marco-compton.conf
:
shadow = false;
Well I use this config, hope it works out.
backend = âglxâ;
vsync = âopengl-swcâ;
detect-rounded-corners = true;
paint-on-overlay = true;
glx-no-stencil = true;
glx-swap-method = âundefinedâ;
unredir-if-possible = true;
inactive-opacity-override = true;
mark-wmwin-focused = true;
shadow = false;
I was looking for a way to disable the shadows too. It work nicely. Thank you.