Skip to content

Commit 042e48c

Browse files
committed
lowercase this
1 parent d3caab1 commit 042e48c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/main.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
var stop = false
1212

1313
func main() {
14-
_, err := gow32.CreateMutex("Stadia2Xbox")
14+
_, err := gow32.CreateMutex("stadia2xbox")
1515
if err != nil {
16-
msg("An instance of Stadia2Xbox is already running!")
16+
msg("An instance of stadia2xbox is already running!")
1717
} else {
1818
systray.Run(ready, close)
1919
}
@@ -107,7 +107,8 @@ func close() {
107107

108108
func msg(str string) {
109109
notif := toast.Notification{
110-
Title: "Stadia2Xbox",
110+
AppID: "stadia2xbox",
111+
Title: "stadia2xbox",
111112
Message: str,
112113
}
113114
notif.Push()

0 commit comments

Comments
 (0)