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.
11 lines
313 B
11 lines
313 B
#!/bin/bash
|
|
# Starts the Kubuntu OEM Environment.
|
|
export QT_STYLE_OVERRIDE="Breeze"
|
|
|
|
/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
|