mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-02-13 06:17:04 +00:00
20 lines
658 B
Bash
Executable File
20 lines
658 B
Bash
Executable File
#!/bin/bash
|
|
# Starts the Lubuntu OEM Environment.
|
|
|
|
# This is pretty overkill, but don't remove anything without testing
|
|
export XDG_CONFIG_DIRS="/etc/xdg/xdg-Lubuntu:"$XDG_CONFIG_DIRS
|
|
export XDG_DATA_DIRS="/usr/share/Lubuntu:"$XDG_DATA_DIRS
|
|
export XDG_SESSION_CLASS="user"
|
|
export XDG_SESSION_DESKTOP="Lubuntu"
|
|
export DESKTOP_SESSION="Lubuntu"
|
|
export QT_STYLE_OVERRIDE="Breeze"
|
|
export QT_QPA_PLATFORMTHEME="lxqt"
|
|
|
|
/usr/bin/openbox &
|
|
/usr/bin/basicwallpaper /usr/share/lubuntu/wallpapers/lubuntu-default-wallpaper.png &
|
|
sudo -E /usr/bin/calamares -D8 # This is intentionally *not* backgrounded.
|
|
# If it exits...
|
|
killall basicwallpaper
|
|
killall openbox
|
|
startlxqt
|