Last active
January 8, 2022 21:56
-
-
Save Letterus/28891a951a6fdc26757b2c9c13122364 to your computer and use it in GitHub Desktop.
Compton config (.config/compton.conf) for use with Xfce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
backend = "glx"; | |
glx-no-stencil = true; | |
vsync = true; | |
unredir-if-possible = true; | |
shadow = true; | |
shadow-radius = 7; | |
shadow-offset-x = -7; | |
shadow-offset-y = -7; | |
shadow-exclude = [ "n:e:Notification", "n:e:Docky", "g:e:Synapse", "g:e:Conky", "n:w:*Chromium*", "n:w:*Firefox*", "n:w:*Epiphany*", "n:w:*dockbarx*", "class_g ?= 'Cairo-dock'", "class_g ?= 'Xfce4-notifyd'", "class_g ?= 'Xfce4-power-manager'", "class_g ?= 'Notify-osd'", "_GTK_FRAME_EXTENTS@:c" ]; | |
detect-client-opacity = true; | |
wintypes : | |
{ | |
dock : | |
{ | |
shadow = false; | |
}; | |
dnd : | |
{ | |
shadow = false; | |
}; | |
tooltip : | |
{ | |
shadow = false; | |
}; | |
}; | |
shadow-opacity = 0.8; | |
clear-shadow = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment