Move mpris out of pkg directory and run gofumpt

This commit is contained in:
2022-11-24 17:36:25 -08:00
parent b3be8e7027
commit 9f0ca5a7df
7 changed files with 33 additions and 36 deletions

View File

@@ -29,7 +29,7 @@ func init() {
// If config dir is not readable
if _, err = os.ReadDir(cfgDir); err != nil {
// Create config dir with 700 permissions
err = os.MkdirAll(cfgDir, 0700)
err = os.MkdirAll(cfgDir, 0o700)
if err != nil {
panic(err)
}