# notify (Bildirim)

Bazen programımızda kullanıcının haberdar olması için bildirim özelliği gerekir. Bu özelliği `notify` paketi ile kazandırabiliriz.

> go get github.com/martinlindhe/notify

Paketi indirdikten sonra, aşağıdaki kodları deneyebilirsiniz.

```go
package main

import "github.com/martinlindhe/notify"

func main() {
	// Bildirim Gösterme
	notify.Notify("Uygulama İsmi", "Başlık", "Açıklama", "icon/yolu.png")

	// Sesli Bilgirim Gösterme
	notify.Alert("Uygulama İsmi", "Başlık", "Açıklama", "icon/yolu.png")
}
```

![GNU/Linux (Ubuntu'da)](/files/-LzJai-rKj4SG3v4Nf7S)

![macOS / OSX 10.8+](/files/-LzJapQ-Ls7v5y8EP6ic)

![Windows 10](/files/-LzJazVi6YJLvVg8CGvg)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://go.kaanksc.com/gui/notify-bildirim.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
