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
384 B
12 lines
384 B
#!/bin/bash
|
|
# Starts the Kubuntu OEM Environment.
|
|
export QT_STYLE_OVERRIDE="Breeze"
|
|
|
|
sudo rm /etc/sddm.conf # Ensure this session only runs on first bootup
|
|
/usr/bin/kwin_x11 &
|
|
/usr/bin/basicwallpaper /usr/share/wallpapers/Next/contents/3840x2160.png &
|
|
sudo -E /usr/bin/calamares -D8 # This is intentionally *not* backgrounded.
|
|
# If it exits...
|
|
killall basicwallpaper
|
|
killall kwin_x11
|