You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
332 B
12 lines
332 B
#!/bin/bash
|
|
# Starts the Lubuntu Live Environment.
|
|
|
|
openbox &
|
|
sudo lubuntu-installer-prompt # This is intentionally *not* backgrounded.
|
|
# If it exits...
|
|
export XDG_CONFIG_DIRS="/etc/xdg/xdg-Lubuntu:"$XDG_CONFIG_DIRS
|
|
export XDG_DATA_DIRS="/usr/share/Lubuntu:"$XDG_DATA_DIRS
|
|
export DESKTOP_SESSION="Lubuntu"
|
|
killall openbox
|
|
startlxqt
|