fontdirs_darwin.go 334 B

1234567891011121314
  1. // Copyright 2016 Florian Pigorsch. All rights reserved.
  2. //
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package findfont
  6. func getFontDirectories() (paths []string) {
  7. return []string{
  8. expandUser("~/Library/Fonts/"),
  9. "/Library/Fonts/",
  10. "/System/Library/Fonts/",
  11. }
  12. }