문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
|
linux:compton [2014/01/04 14:48] kwon37xi |
linux:compton [2020/08/16 06:48] (현재) kwon37xi |
||
|---|---|---|---|
| 줄 1: | 줄 1: | ||
| ====== Compton ====== | ====== Compton ====== | ||
| * [[https:// | * [[https:// | ||
| + | * 개발 중단. [[linux: | ||
| * [[linux: | * [[linux: | ||
| * [[https:// | * [[https:// | ||
| 줄 10: | 줄 11: | ||
| </ | </ | ||
| + | compton 사용시, 애플리케이션의 투명 기능은 꺼두는 것이 나은 듯. | ||
| + | |||
| + | * [[https:// | ||
| ===== 시작 프로그램으로 등록 ===== | ===== 시작 프로그램으로 등록 ===== | ||
| 옵션 도움말은 '' | 옵션 도움말은 '' | ||
| 줄 15: | 줄 19: | ||
| 아래는 예시. | 아래는 예시. | ||
| <code sh> | <code sh> | ||
| - | compton -c -r 16 -l -24 -t -12 -G -b | + | compton -c -r 8 -l -24 -t -12 -G -b --shadow-exclude ' |
| + | | ||
| </ | </ | ||
| - | |||
| ===== compton-trans ===== | ===== compton-trans ===== | ||
| * [[https:// | * [[https:// | ||
| * '' | * '' | ||
| + | ===== shadow-exclude ===== | ||
| + | * '' | ||
| + | * Wine, Firefox 애플리케이션 제외< | ||
| + | compton [...options..] --shadow-exclude ' | ||
| + | | ||
| + | </ | ||
| + | * Usage< | ||
| + | --shadow-exclude condition | ||
| + | Exclude conditions for shadows. | ||
| + | |||
| + | Format of a condition: | ||
| + | |||
| + | condition = < | ||
| + | |||
| + | < | ||
| + | instance), and " | ||
| + | |||
| + | < | ||
| + | " | ||
| + | regular expressions, | ||
| + | |||
| + | < | ||
| + | flag is " | ||
| + | |||
| + | < | ||
| + | </ | ||
| + | * Examples< | ||
| + | # Don't paint shadow if window name is exactly URxvt | ||
| + | compton -c --shadow-exclude ' | ||
| + | |||
| + | # Don't paint shadow if window general class string starts with | ||
| + | # " | ||
| + | compton -c --shadow-exclude ' | ||
| + | |||
| + | # Don't paint shadow if window name matches wildcard " | ||
| + | compton -c --shadow-exclude ' | ||
| + | |||
| + | # Don't paint shadow if window instance class string contains " | ||
| + | # ignore case | ||
| + | compton -c --shadow-exclude ' | ||
| + | |||
| + | # Don't paint shadow if window name matches PCRE regular expression | ||
| + | # "( - )?Mozilla Firefox$", | ||
| + | compton -c --shadow-exclude ' | ||
| + | |||
| + | # Combine them all | ||
| + | compton -c --shadow-exclude ' | ||
| + | --shadow-exclude ' | ||
| + | --shadow-exclude ' | ||
| + | --shadow-exclude ' | ||
| + | --shadow-exclude ' | ||
| + | </ | ||
| ===== 참조 ===== | ===== 참조 ===== | ||
| 줄 27: | 줄 83: | ||
| * [[https:// | * [[https:// | ||
| * [[http:// | * [[http:// | ||
| + | * [[http:// | ||