2018-12-24 13:41:04 +00:00

37 lines
806 B
Go

package LauncherPy
import (
"os/exec"
"os/user"
"github.com/cuu/gogame/time"
"github.com/clockworkpi/LauncherGoDev/sysgo/UI"
)
/******************************************************************************/
type LauncherPyPlugin struct {
UI.Plugin
}
func (self *LauncherPyPlugin) Init( main_screen *UI.MainScreen ) {
}
func (self *LauncherPyPlugin) Run( main_screen *UI.MainScreen ) {
if main_screen != nil {
main_screen.MsgBox.SetText("Rebooting to Launcher")
main_screen.MsgBox.Draw()
main_screen.SwapAndShow()
time.BlockDelay(550)
usr, _ := user.Current()
dir := usr.HomeDir
cmd := exec.Command("sed","-i","s/launchergo/launcher/g",dir+"/.bashrc")
cmd.Run()
cmd = exec.Command("sudo","reboot")
cmd.Run()
}
}
var APIOBJ LauncherPyPlugin