summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/OpenPeeDeeP/xdg/xdg_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/OpenPeeDeeP/xdg/xdg_linux.go')
-rw-r--r--vendor/github.com/OpenPeeDeeP/xdg/xdg_linux.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/github.com/OpenPeeDeeP/xdg/xdg_linux.go b/vendor/github.com/OpenPeeDeeP/xdg/xdg_linux.go
deleted file mode 100644
index 3746dea65..000000000
--- a/vendor/github.com/OpenPeeDeeP/xdg/xdg_linux.go
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2017, OpenPeeDeeP. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package xdg
-
-import (
- "os"
- "path/filepath"
-)
-
-func (o *osDefaulter) defaultDataHome() string {
- return filepath.Join(os.Getenv("HOME"), ".local", "share")
-}
-
-func (o *osDefaulter) defaultDataDirs() []string {
- return []string{"/usr/local/share/", "/usr/share/"}
-}
-
-func (o *osDefaulter) defaultConfigHome() string {
- return filepath.Join(os.Getenv("HOME"), ".config")
-}
-
-func (o *osDefaulter) defaultConfigDirs() []string {
- return []string{"/etc/xdg"}
-}
-
-func (o *osDefaulter) defaultCacheHome() string {
- return filepath.Join(os.Getenv("HOME"), ".cache")
-}