diff options
author | Harvey Tindall <hrfee@protonmail.ch> | 2020-11-26 19:11:38 +0000 |
---|---|---|
committer | Harvey Tindall <hrfee@protonmail.ch> | 2020-11-26 19:11:38 +0000 |
commit | 9b02fc285119ce140bbc6aa64936cc6fc6165cd1 (patch) | |
tree | 9798f25c23540f875377e3cc31cd2f223d39d77c /main.go | |
parent | a84ae6bd5b02aac902b8e335927cd5c1cb3261a1 (diff) | |
download | waybar-mpris-9b02fc285119ce140bbc6aa64936cc6fc6165cd1.tar.gz waybar-mpris-9b02fc285119ce140bbc6aa64936cc6fc6165cd1.zip |
print clone message to stderr
any non-json output at all seems to break waybar now, so this avoids it.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -450,8 +450,8 @@ func main() { } } else if conn, err := net.Dial("unix", SOCK); err == nil { // When waybar-mpris is already running, we attach to its output instead of launching a whole new instance. - - fmt.Println("waybar-mpris is already running. This instance will clone its output.") + // Print to stderr to avoid errors from waybar + os.Stderr.WriteString("waybar-mpris is already running. This instance will clone its output.") if err != nil { log.Fatalln("Couldn't dial:", err) } |