From 75a26c064d8e7826ad69cb42d20b9964ea59bacb Mon Sep 17 00:00:00 2001 From: KemoNine Date: Fri, 28 Aug 2020 18:40:33 -0400 Subject: [PATCH] Update slideshow path to match docs --- cmd/ui/ui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ui/ui.go b/cmd/ui/ui.go index 49e110d..5e2a291 100644 --- a/cmd/ui/ui.go +++ b/cmd/ui/ui.go @@ -36,7 +36,7 @@ func main() { // Forever run slideshow / show ui as the main program executed on a PiFrame for { // Run slideshow - fim = exec.Command("/usr/local/bin/fim-slideshow.sh") + fim = exec.Command("/usr/local/bin/pf-fim.sh") if err := fim.Run(); err != nil { // Unwrap the error a bit so we can find out if a signal killed fim or something else // An exit code of -1 means the program didn't exit in time or was terminated by a signal (per the docs)