Adapt compton config to new naming scheme picom
This commit is contained in:
parent
a1c8b56003
commit
717b9d9096
2 changed files with 4 additions and 4 deletions
|
@ -47,7 +47,7 @@ glx-no-rebind-pixmap = true;
|
||||||
# Useless with --glx-use-copysubbuffermesa.
|
# Useless with --glx-use-copysubbuffermesa.
|
||||||
# Partially breaks --resize-damage.
|
# Partially breaks --resize-damage.
|
||||||
# Defaults to undefined.
|
# Defaults to undefined.
|
||||||
glx-swap-method = "buffer-age";
|
use-damage = true
|
||||||
|
|
||||||
#################################
|
#################################
|
||||||
#
|
#
|
||||||
|
@ -177,7 +177,7 @@ refresh-rate = 0;
|
||||||
# opengl-oml: Try to VSync with OML_sync_control OpenGL extension. Only work on some drivers.
|
# opengl-oml: Try to VSync with OML_sync_control OpenGL extension. Only work on some drivers.
|
||||||
# opengl-swc: Try to VSync with SGI_swap_control OpenGL extension. Only work on some drivers. Works only with GLX backend. Known to be most effective on many drivers. Does not actually control paint timing, only buffer swap is affected, so it doesn’t have the effect of --sw-opti unlike other methods. Experimental.
|
# opengl-swc: Try to VSync with SGI_swap_control OpenGL extension. Only work on some drivers. Works only with GLX backend. Known to be most effective on many drivers. Does not actually control paint timing, only buffer swap is affected, so it doesn’t have the effect of --sw-opti unlike other methods. Experimental.
|
||||||
# (Note some VSync methods may not be enabled at compile time.)
|
# (Note some VSync methods may not be enabled at compile time.)
|
||||||
vsync = "opengl-swc";
|
vsync = true;
|
||||||
|
|
||||||
# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing.
|
# Enable DBE painting mode, intended to use with VSync to (hopefully) eliminate tearing.
|
||||||
# Reported to have no effect, though.
|
# Reported to have no effect, though.
|
4
.xinitrc
4
.xinitrc
|
@ -53,8 +53,8 @@ type xcape >/dev/null 2>&1 && xcape -e 'Control_L=Escape'
|
||||||
|
|
||||||
# if unclutter exists start it
|
# if unclutter exists start it
|
||||||
type unclutter >/dev/null 2>&1 && unclutter &
|
type unclutter >/dev/null 2>&1 && unclutter &
|
||||||
# if compton exists then we can start it as our compositor
|
# if picom exists then we can start it as our compositor
|
||||||
type compton >/dev/null 2>&1 && compton &
|
type picom >/dev/null 2>&1 && picom &
|
||||||
# same deal with flashfocus as our active window indicator
|
# same deal with flashfocus as our active window indicator
|
||||||
type flashfocus >/dev/null 2>&1 && flashfocus -l never &
|
type flashfocus >/dev/null 2>&1 && flashfocus -l never &
|
||||||
# if redshift is installed run it
|
# if redshift is installed run it
|
||||||
|
|
Loading…
Reference in a new issue