Moderators, translator
455
edits
(Marked this version for translation) |
(implemented templates and updated links) |
||
Line 5: | Line 5: | ||
People who are experiencing screen tearing in Xfce can try out the following method. | People who are experiencing screen tearing in Xfce can try out the following method. | ||
= Installing | Compton has been replaced by Picom | ||
= Installing picom = <!--T:2--> | |||
Picom - is an X compositor which supports xrender and glx (opengl) backends. | |||
<!--T:3--> | <!--T:3--> | ||
To install it from the command line: | To install it from the command line: | ||
{{UserCmd|command=sudo pacman -S picom}} | |||
= Configuring compton = <!--T:4--> | = Configuring compton = <!--T:4--> | ||
Picom is configured by editing ''~/.config/picom/picom.conf''. | |||
<!--T:5--> | <!--T:5--> | ||
The following are some commonly used options: | The following are some commonly used options: | ||
{{File|file=~/.config/picom/picom.conf|content= | |||
<pre> | |||
backend = "glx"; | |||
glx-no-stencil = true; | |||
vsync = true; | |||
unredir-if-possible = true; | |||
# Shadow | |||
shadow = true; # Enabled client-side shadows on windows. | |||
shadow-radius = 7; # The blur radius for shadows. (default 12) | |||
shadow-offset-x = -7; # The left offset for shadows. (default -15) | |||
shadow-offset-y = -7; # The top offset for shadows. (default -15) | |||
shadow-exclude = [ | |||
"n:e:Notification", | "n:e:Notification", | ||
"n:e:Docky", | "n:e:Docky", | ||
Line 40: | Line 44: | ||
"class_g ?= 'Notify-osd'", | "class_g ?= 'Notify-osd'", | ||
"_GTK_FRAME_EXTENTS@:c" | "_GTK_FRAME_EXTENTS@:c" | ||
]; | |||
# Opacity | |||
detect-client-opacity = true; | |||
# Window type settings | |||
wintypes: | |||
{ | |||
dock = { shadow = false; }; | dock = { shadow = false; }; | ||
dnd = { shadow = false; }; | dnd = { shadow = false; }; | ||
tooltip = { shadow = false; }; | tooltip = { shadow = false; }; | ||
}; | }; | ||
</pre> | |||
}} | |||
= Disabling xfwm4 compositor and enabling | = Disabling xfwm4 compositor and enabling picom = <!--T:6--> | ||
The following command can be used to turn off xfwm4's compositing feature: | The following command can be used to turn off xfwm4's compositing feature: | ||
{{UserCmd|command=xfconf-query -c xfwm4 -p /general/use_compositing -s false}} | |||
<!--T:7--> | <!--T:7--> | ||
Create a new file ''~/.config/autostart/picom.desktop'' with content | |||
{{File|file=~/.config/autostart/picom.desktop|content= | |||
<pre> | |||
[Desktop Entry] | [Desktop Entry] | ||
Encoding=UTF-8 | Encoding=UTF-8 | ||
Line 70: | Line 79: | ||
Terminal=false | Terminal=false | ||
Hidden=false | Hidden=false | ||
</pre> | |||
}} | |||
<!--T:8--> | <!--T:8--> | ||
Now one could logout and login again to see if | Now one could logout and login again to see if picom has been activated. | ||
<!--T:9--> | <!--T:9--> | ||
To check if compton is working following command can be used: | To check if compton is working following command can be used: | ||
{{UserCmd|command=pgrep -l picom}} | |||
= Links = <!--T:10--> | = Links = <!--T:10--> | ||
<!--T:11--> | <!--T:11--> | ||
* https://wiki.archlinux.org/title/Picom | |||
* https://github.com/yshui/picom | |||
*https://wiki.archlinux.org/ | |||
*https://github.com/ | |||
</translate> | </translate> | ||
[[Category:Contents Page{{#translation:}}]] | [[Category:Contents Page{{#translation:}}]] |