1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-30 02:54:04 +03:00
tabby/app/lib/config.ts

14 lines
366 B
TypeScript
Raw Normal View History

2018-10-06 21:50:06 +03:00
import * as fs from 'fs'
import * as path from 'path'
import * as yaml from 'js-yaml'
import { app } from 'electron'
export function loadConfig (): any {
2020-12-24 16:03:14 +03:00
const configPath = path.join(app.getPath('userData'), 'config.yaml')
2018-10-06 21:50:06 +03:00
if (fs.existsSync(configPath)) {
2021-01-28 23:52:11 +03:00
return yaml.load(fs.readFileSync(configPath, 'utf8'))
2018-10-06 21:50:06 +03:00
} else {
return {}
}
}