//go:build darwin package main import ( "io" "os" "os/user" "path" "gioui.org/font/opentype" ) var ( noidLabelText = "No GPG ids available. Please create a private key or enter a key ID above" ) func setFont() error { f, err := os.Open("/System/Library/Fonts/AppleSDGothicNeo.ttc") if err != nil { log(Info, "Cannot open system font collection") return err } defer f.Close() data, err := io.ReadAll(f) if err != nil { log(Info, "Cannot read system font collection") return err } fnts, err := opentype.ParseCollection(data) if err != nil { log(Info, "Cannot parse font collection") return err } collection = append(collection, fnts...) return nil } func init() { fontSize = 16 setFont() } func getConfDir() (string, error) { usr, err := user.Current() if err != nil { log(Error, "Cannot get current user: ", err) return "", err } ret := path.Join(usr.HomeDir, ".config/passgo") if _, err := os.Stat(ret); os.IsNotExist(err) { err = os.MkdirAll(ret, 0700) if err != nil { log(Info, "Cannot create configuration directory ", confDir) return "", err } else { log(Info, "Configuration directory created") return ret, nil } } return ret, nil }