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.
14 lines
404 B
14 lines
404 B
#!/bin/bash
|
|
# Starts the Ubuntu Unity OEM Environment.
|
|
|
|
export DESKTOP_SESSION='ubuntu-unity-oem-env'
|
|
export BROWSER='sudo -H -u ubuntu-unity firefox'
|
|
|
|
/usr/bin/xfwm4 &
|
|
/usr/bin/basicwallpaper /usr/share/backgrounds/ubuntu-unity/ubuntu-unity-default.png &
|
|
sudo -E /usr/bin/calamares -D8 # This is intentionally *not* backgrounded.
|
|
# If it exits...
|
|
pkill -9 basicwallpaper
|
|
pkill -9 xfconfd
|
|
pkill -9 xfwm4
|