9 lines
174 B
Plaintext
9 lines
174 B
Plaintext
|
#!/bin/bash
|
||
|
# Starts the Lubuntu Live Environment.
|
||
|
|
||
|
openbox &
|
||
|
lubuntu-installer-prompt # This is intentionally *not* backgrounded.
|
||
|
# If it exits...
|
||
|
killall openbox
|
||
|
startlxqt
|