| 482 |
482 |
elif osextras.find_on_path('metacity'): |
| 483 |
483 |
wm_cmd = ['metacity', '--sm-disable'] |
| 484 |
484 |
elif osextras.find_on_path('xfwm4'): |
| 485 |
|
wm_cmd = ['xfwm4', '--compositor=off'] |
|
485 |
wm_cmd = ['xfwm4', '--compositor=off', '--sm-client-disable'] |
| 486 |
486 |
elif osextras.find_on_path('matchbox-window-manager'): |
| 487 |
487 |
wm_cmd = ['matchbox-window-manager'] |
| 488 |
488 |
elif osextras.find_on_path('openbox-lubuntu'): |
| … |
| 508 |
508 |
stdin=null, stdout=logfile, stderr=logfile, |
| 509 |
509 |
preexec_fn=self.drop_privileges)) |
| 510 |
510 |
extras.append(subprocess.Popen( |
| 511 |
|
['xfsettingsd'], |
|
511 |
['xprop', '-root', '-format', '_NET_NUMBER_OF_DESKTOPS', |
|
512 |
'32c', '-set', '_NET_NUMBER_OF_DESKTOPS', '1'], |
|
513 |
stdin=null, stdout=logfile, stderr=logfile, |
|
514 |
preexec_fn=self.drop_privileges)) |
|
515 |
extras.append(subprocess.Popen( |
|
516 |
['xfsettingsd', '--sm-client-disable'], |
|
517 |
stdin=null, stdout=logfile, stderr=logfile, |
|
518 |
preexec_fn=self.drop_privileges)) |
|
519 |
extras.append(subprocess.Popen( |
|
520 |
['xfdesktop', '--sm-client-disable'], |
| 512 |
521 |
stdin=null, stdout=logfile, stderr=logfile, |
| 513 |
522 |
preexec_fn=self.drop_privileges)) |
| 514 |
523 |
|