Compton: Remove a bunch of animations

Trying to simplify things
This commit is contained in:
Salt 2018-08-07 19:08:39 -05:00
parent 30031641e8
commit cd6af017e3
2 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ glx-swap-method = "undefined";
################################# #################################
# Enabled client-side shadows on windows. # Enabled client-side shadows on windows.
shadow = true; shadow = false;
# Don't draw shadows on DND windows. # Don't draw shadows on DND windows.
no-dnd-shadow = true; no-dnd-shadow = true;
# Avoid drawing shadows on dock/panel windows. # Avoid drawing shadows on dock/panel windows.
@ -125,7 +125,7 @@ alpha-step = 0.06;
# Do not let dimness adjust based on window opacity. # Do not let dimness adjust based on window opacity.
# inactive-dim-fixed = true; # inactive-dim-fixed = true;
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred. # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
blur-background = true; blur-background = false;
blur-kern = "7x7box"; blur-kern = "7x7box";
# Blur background of opaque windows with transparent frames as well. # Blur background of opaque windows with transparent frames as well.
blur-background-frame = false; blur-background-frame = false;
@ -144,7 +144,7 @@ blur-background-exclude = [
################################# #################################
# Fade windows during opacity changes. # Fade windows during opacity changes.
fading = true; fading = false;
# The time between steps in a fade in milliseconds. (default 10). # The time between steps in a fade in milliseconds. (default 10).
fade-delta = 3; fade-delta = 3;
# Opacity change between steps while fading in. (default 0.028). # Opacity change between steps while fading in. (default 0.028).

View File

@ -56,7 +56,7 @@ try:
# Python3 uses UTF-8 by default. # Python3 uses UTF-8 by default.
if sys.version_info.major == 3: if sys.version_info.major == 3:
print(output.format(artist=artist, song=song)) print(output.format(artist=artist, song=song).encode('UTF-32'))
else: else:
print(output.format(artist=artist, song=song).encode('UTF-8')) print(output.format(artist=artist, song=song).encode('UTF-8'))
except Exception as e: except Exception as e: