| 461 |
461 |
elif osextras.find_on_path('metacity'): |
| 462 |
462 |
wm_cmd = ['metacity', '--sm-disable'] |
| 463 |
463 |
elif osextras.find_on_path('xfwm4'): |
| 464 |
|
wm_cmd = ['xfwm4', '--compositor=off'] |
|
464 |
wm_cmd = ['xfwm4', '--compositor=off', '--sm-client-disable'] |
| 465 |
465 |
elif osextras.find_on_path('matchbox-window-manager'): |
| 466 |
466 |
wm_cmd = ['matchbox-window-manager'] |
| 467 |
467 |
elif osextras.find_on_path('openbox-lubuntu'): |
| … |
| 487 |
487 |
stdin=null, stdout=logfile, stderr=logfile, |
| 488 |
488 |
preexec_fn=self.drop_privileges)) |
| 489 |
489 |
extras.append(subprocess.Popen( |
| 490 |
|
['xfsettingsd'], |
|
490 |
['xprop', '-root', '-format', '_NET_NUMBER_OF_DESKTOPS', |
|
491 |
'32c', '-set', '_NET_NUMBER_OF_DESKTOPS', '1'], |
|
492 |
stdin=null, stdout=logfile, stderr=logfile, |
|
493 |
preexec_fn=self.drop_privileges)) |
|
494 |
extras.append(subprocess.Popen( |
|
495 |
['xfsettingsd', '--sm-client-disable'], |
|
496 |
stdin=null, stdout=logfile, stderr=logfile, |
|
497 |
preexec_fn=self.drop_privileges)) |
|
498 |
extras.append(subprocess.Popen( |
|
499 |
['xfdesktop', '--sm-client-disable'], |
| 491 |
500 |
stdin=null, stdout=logfile, stderr=logfile, |
| 492 |
501 |
preexec_fn=self.drop_privileges)) |
| 493 |
502 |
|