update readme to working non-https url

This commit is contained in:
evan 2024-10-12 23:34:21 -05:00
parent 715132e100
commit eb374379d1
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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))