Difference between revisions of "Translations:Using Compton for a tear-free experience in Xfce/5/en"

Importing a new version from external source
(Importing a new version from external source)
 
(Importing a new version from external source)
Tags: Mobile web edit Mobile edit
 
Line 1: Line 1:
The following are some commonly used options:
The following are some commonly used options:
backend = "glx";
{{File|file=~/.config/picom/picom.conf|content=
glx-no-stencil = true;
<pre>
vsync = true;
backend = "glx";
unredir-if-possible = true;
glx-no-stencil = true;
vsync = true;
unredir-if-possible = true;
   
   
# Shadow
# Shadow
shadow = true; # Enabled client-side shadows on windows.
shadow = true; # Enabled client-side shadows on windows.
shadow-radius = 7; # The blur radius for shadows. (default 12)
shadow-radius = 7; # The blur radius for shadows. (default 12)
shadow-offset-x = -7; # The left offset for shadows. (default -15)
shadow-offset-x = -7; # The left offset for shadows. (default -15)
shadow-offset-y = -7; # The top offset for shadows. (default -15)
shadow-offset-y = -7; # The top offset for shadows. (default -15)
shadow-exclude = [
shadow-exclude = [
   "n:e:Notification",
   "n:e:Notification",
   "n:e:Docky",
   "n:e:Docky",
Line 23: Line 25:
   "class_g ?= 'Notify-osd'",
   "class_g ?= 'Notify-osd'",
   "_GTK_FRAME_EXTENTS@:c"
   "_GTK_FRAME_EXTENTS@:c"
];
];
   
   
# Opacity
# Opacity
detect-client-opacity = true;
detect-client-opacity = true;
   
   
# Window type settings
# Window type settings
wintypes:
wintypes:
{
{
   dock = { shadow = false; };
   dock = { shadow = false; };
   dnd = { shadow = false; };
   dnd = { shadow = false; };
   tooltip = { shadow = false; };
   tooltip = { shadow = false; };
  };
  };
</pre>
}}
8,138

edits