답변:
14.04부터
dconf dump /org/compiz/profiles/unity/ | grep active-plugins
터미널에서 실행하십시오 . 이것은 당신에게 someting을 줄 것입니다
active-plugins=['core', 'composite', 'opengl', 'wall', 'resize', 'vpswitch', 'compiztoolbox', 'move', 'snap', 'grid', 'imgpng', 'commands', 'unitymtgrabhandles', 'mousepoll', 'place', 'copytex', 'regex', 'session', 'animation', 'fade', 'expo', 'workarounds', 'ezoom', 'scale', 'unityshell']
답변 참조 https://askubuntu.com/a/320677/10475
일반적으로 gsettings에서 공급 업체 재정의로 시스템 전체 설정을 지정할 수 있습니다. 그대로 DConf 경로를 포함하는 스키마 재정의 파일을 쓸 수 없습니다 (참조 # 1281580를 당신이해야 할) 직접 dconf의 설정을 설정합니다 :
1 단계 : 이 컨텐츠 로 파일 user
을 작성하십시오 /etc/dconf/profile/
.
user-db:user
system-db:compiz
2 단계 : 폴더 만들기 compiz.d
에을/etc/dconf/db/
3 단계 :
파일 00_default_plugins
을 /etc/dconf/db/compiz.d/
만들어 넣습니다 _your list of plugins_
( dconf dump /org/compiz/profiles/unity/ | grep active-plugins
실제로 활성화 된 플러그인 목록을 가져 오려면 실행 ).
예:
[org/compiz/profiles/unity/plugins/core]
active-plugins=['core', 'composite', 'opengl', 'move', 'vpswitch', 'copytex', 'grid', 'commands', 'snap', 'compiztoolbox', 'mousepoll', 'place', 'resize', 'imgpng', 'session', 'wall', 'regex', 'unitymtgrabhandles', 'animation', 'winrules', 'fade', 'workarounds', 'expo', 'scale', 'ezoom', 'unityshell']
4 단계 :
이 설정을 필수로 설정하십시오. 폴더 locks
를 /etc/dconf/db/compiz.d/
만들고이 00_compiz_active_plugins
내용으로 이름 이 지정된 파일을 안에 넣습니다.
/org/compiz/profiles/unity/plugins/core/active-plugins
5 단계 : sudo dconf update
터미널에서 실행 하여 컴파일합니다.
이제 게스트 세션을 열고 설정이 적용되었는지 확인할 수 있습니다.
NB : 당신의 이름을 지정할 수 있습니다 system-db
당신이 좋아하는 방법을하지만 폴더 것을 명심 compiz.d
내 예제에서이 같은 이름이어야합니다 system-db
에 .d
추가.
크레딧 :
https://wiki.gnome.org/Projects/dconf/SystemAdministrators
http://blog.chapus.net/more-gnome-unity-system-defaults/
적어도 11.04 & 11.10에서는 대괄호 안에 활성화 된 플러그인 목록이 표시됩니다. []
gconftool-2 --get /apps/compiz-1/general/screen0/options/active_plugins
""] 괄호 주위에 "를 사용하여 해당 목록을 가져 오거나 더하거나 뺄 수 있습니다.
gconftool-2 --set --type=list --list-type=string /apps/compiz-1/general/screen0/options/active_plugins "[list,goes,in,here]"
$ gconftool-2 --get /apps/compiz-1/general/screen0/options/active_plugins No value set for '/apps/compiz-1/general/screen0/options/active_plugins'