mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-07-30 09:44:03 +00:00
16 lines
570 B
Bash
Executable File
16 lines
570 B
Bash
Executable File
#!/bin/bash
|
|
# Starts the Kubuntu OEM Environment.
|
|
export XDG_SESSION_CLASS="user"
|
|
export XDG_SESSION_DESKTOP="KDE"
|
|
export DESKTOP_SESSION="plasma"
|
|
export QT_QPA_PLATFORMTHEME="kde"
|
|
export BROWSER='sudo -H -u kubuntu firefox'
|
|
|
|
/usr/bin/kwin_wayland --no-lockscreen &
|
|
while [ ! -e "/run/user/$(id -u)/wayland-0" ]; do sleep 1; done
|
|
/usr/bin/basicwallpaper /usr/share/wallpapers/Next/contents/3840x2160.png &
|
|
WAYLAND_DISPLAY="wayland-0" sudo -E /usr/bin/calamares -D8 # This is intentionally *not* backgrounded.
|
|
# If it exits...
|
|
killall basicwallpaper
|
|
killall kwin_wayland
|