1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-27 06:52:50 -05:00

doctor: use builtin config/cache dir functions

This commit is contained in:
LuckShiba
2026-01-03 18:53:15 -03:00
parent 002039bd3f
commit 13c352fd58
3 changed files with 14 additions and 25 deletions

View File

@@ -29,5 +29,5 @@ func IsServiceActive(name string, userService bool) bool {
args = []string{"--user", "is-active", name}
}
output, _ := exec.Command("systemctl", args...).Output()
return strings.TrimSpace(string(output)) == "active"
return strings.EqualFold(strings.TrimSpace(string(output)), "active")
}