diff --git a/README.md b/README.md index 2a7cee1..d8de0fd 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Connect the reMarkable via USB and make sure it has internet access. Connect to the reMarkable with [SSH](https://remarkable.guide/guide/access/ssh.html) and execute - wget -O - http://raw.githubusercontent.com/Evidlo/remarkable_printer/master/install.sh | sh + wget -O - http://evidlo.github.io/remarkable_printer/install.sh | sh Then configure your OS to print to the reMarkable, shown below. diff --git a/main.go b/main.go index ccf94a1..7909fa9 100644 --- a/main.go +++ b/main.go @@ -204,7 +204,7 @@ func restartUISoftware() { for _, service := range services { _, exitcode := exec.Command("systemctl", "is-active", service).CombinedOutput() if exitcode == nil { - debug("Restarting " + service) + fmt.Println("Restarting " + service) stdout, err := exec.Command("systemctl", "restart", service).CombinedOutput() if err != nil { fmt.Println(service+" restart failed with message:", string(stdout))