3 lines
244 B
Bash
Executable file
3 lines
244 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$(gconftool -g /apps/metacity/general/compositing_manager)" = "true" ]; then gconftool --type bool -s /apps/metacity/general/compositing_manager 0; else gconftool --type bool -s /apps/metacity/general/compositing_manager 1; fi
|