forked from ptrcnull/bat-alert
Compare commits
2 commits
d1a03b924e
...
d230d84e91
Author | SHA1 | Date | |
---|---|---|---|
|
d230d84e91 | ||
|
cc129b9387 |
1 changed files with 2 additions and 2 deletions
4
main.go
4
main.go
|
@ -11,7 +11,7 @@ import (
|
|||
)
|
||||
|
||||
func notify(msg string) {
|
||||
cmd := exec.Command("notify-send", "-t", "5000", "bat-alert", msg)
|
||||
cmd := exec.Command("notify-send", "-t", "5000", "-u", "critical", "bat-alert", msg)
|
||||
err := cmd.Run()
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
|
@ -34,7 +34,7 @@ func main() {
|
|||
notify("error: " + err.Error())
|
||||
}
|
||||
|
||||
if numCap < 15 {
|
||||
if numCap <= *targetFlag {
|
||||
if !sent {
|
||||
sent = true
|
||||
notify("battery running low!")
|
||||
|
|
Loading…
Reference in a new issue