You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
801 B
28 lines
801 B
'use strict'; |
|
const os = require('os'); |
|
const path = require('path'); |
|
|
|
const homeDirectory = os.homedir(); |
|
const {env} = process; |
|
|
|
exports.data = env.XDG_DATA_HOME || |
|
(homeDirectory ? path.join(homeDirectory, '.local', 'share') : undefined); |
|
|
|
exports.config = env.XDG_CONFIG_HOME || |
|
(homeDirectory ? path.join(homeDirectory, '.config') : undefined); |
|
|
|
exports.cache = env.XDG_CACHE_HOME || (homeDirectory ? path.join(homeDirectory, '.cache') : undefined); |
|
|
|
exports.runtime = env.XDG_RUNTIME_DIR || undefined; |
|
|
|
exports.dataDirs = (env.XDG_DATA_DIRS || '/usr/local/share/:/usr/share/').split(':'); |
|
|
|
if (exports.data) { |
|
exports.dataDirs.unshift(exports.data); |
|
} |
|
|
|
exports.configDirs = (env.XDG_CONFIG_DIRS || '/etc/xdg').split(':'); |
|
|
|
if (exports.config) { |
|
exports.configDirs.unshift(exports.config); |
|
}
|
|
|