Created
November 19, 2015 23:47
-
-
Save illucent/af83521c0c157cc424da to your computer and use it in GitHub Desktop.
comptonwrapper - added by [gist]
This file contains hidden or 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
| #!/bin/bash | |
| # simple compton startup script - <armin@mutt.email> | |
| killall -9 compton | |
| compton_top_offset="-10" | |
| compton_left_offset="-10" | |
| compton_opacity_borders="1.0" | |
| compton_opacity_shadows="0.5" | |
| compton_radius="10" | |
| compton -t "$compton_top_offset" -l "$compton_left_offset" --xinerama-shadow-crop --vsync opengl -e "$compton_opacity_borders" -o "$compton_opacity_shadows" -r "$compton_radius" -D 3 -m 0.95 -C -G --dbe --use-ewmh-active-win -f --no-fading-openclose -c --shadow-exclude="name = 'XOSD'" & | |
| # compton --backend glx --vsync opengl-swc -t "$compton_top_offset" -l "$compton_left_offset" --xinerama-shadow-crop -e "$compton_opacity_borders" -o "$compton_opacity_shadows" -r "$compton_radius" -D 3 -m 0.95 -C -G --dbe --use-ewmh-active-win -f --no-fading-openclose -c --shadow-exclude="name = 'XOSD'" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment