diff options
author | David Runge <dave@sleepmap.de> | 2015-03-11 17:07:17 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-03-11 17:07:17 +0100 |
commit | cef4675b2d177d0d0a1c24a1154a77ea636f9f59 (patch) | |
tree | a173604b1837690e363ff55baf6e1a6bf6b93460 | |
parent | 84aae61d98ea41d45587723c6edffc98cefb40f1 (diff) | |
download | dotfiles-cef4675b2d177d0d0a1c24a1154a77ea636f9f59.tar.gz dotfiles-cef4675b2d177d0d0a1c24a1154a77ea636f9f59.tar.bz2 dotfiles-cef4675b2d177d0d0a1c24a1154a77ea636f9f59.tar.xz dotfiles-cef4675b2d177d0d0a1c24a1154a77ea636f9f59.zip |
.compton.conf: Adding MPlayer to comptons exclude lists.
-rw-r--r-- | .config/compton.conf | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.config/compton.conf b/.config/compton.conf index dc15cc4..378058e 100644 --- a/.config/compton.conf +++ b/.config/compton.conf @@ -45,7 +45,8 @@ blur-background-exclude = [ "window_type = 'desktop'", "name *= 'VLC'", "name *= 'Firefox'", - "name *= 'Vimperator'" + "name *= 'Vimperator'", + "name *= 'MPlayer'" ]; # Exclude conditions for background blur. @@ -58,7 +59,8 @@ fade-out-step = 0.03; # Opacity change between steps while fading out. (defaul fade-exclude = [ "name *= 'VLC'", "name *= 'Firefox'", - "name *= 'Vimperator'" + "name *= 'Vimperator'", + "name *= 'MPlayer'" ]; # Exclude conditions for fading. # Other @@ -85,7 +87,8 @@ unredir-if-possible = false; # Unredirect all windows if a full-screen opaque w focus-exclude = [ "name *= 'VLC'", "name *= 'Firefox'", - "name *= 'Vimperator'" + "name *= 'Vimperator'", + "name *= 'MPlayer'" ]; # A list of conditions of windows that should always be considered # focused. detect-transient = true; # Use WM_TRANSIENT_FOR to group windows, and consider windows in |