Merge branch 'master' of ssh://gitea.digitalcircle.com.br:2222/open/replaycli-go
commit
992fe90efb
|
@ -290,6 +290,18 @@ func (c *Cli) DrawAddText(t string, x, y, w, h int) error {
|
|||
return err
|
||||
}
|
||||
|
||||
/***************** Notify Functions *****************/
|
||||
|
||||
func (c *Cli) NotifyAlert(msg, title string) error {
|
||||
err := c.HttpCli().JsonGet(fmt.Sprintf("/ipc/notify/alert?msg=%s&title=%s", msg, title), nil)
|
||||
return err
|
||||
}
|
||||
|
||||
func (c *Cli) NotifyBeep(msg, title string) error {
|
||||
err := c.HttpCli().JsonGet(fmt.Sprintf("/ipc/notify/notify?msg=%s&title=%s", msg, title), nil)
|
||||
return err
|
||||
}
|
||||
|
||||
func NewCli() *Cli {
|
||||
ret := &Cli{ApiCli: api.NewApiCli()}
|
||||
return ret
|
||||
|
|
Loading…
Reference in New Issue