1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-27 00:50:49 +03:00
tabby/app/lib/config.ts

27 lines
844 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'
2021-06-30 00:57:04 +03:00
export function migrateConfig (): void {
const configPath = path.join(app.getPath('userData'), 'config.yaml')
const legacyConfigPath = path.join(app.getPath('userData'), '../terminus', 'config.yaml')
if (fs.existsSync(legacyConfigPath) && (
!fs.existsSync(configPath) ||
fs.statSync(configPath).mtime < fs.statSync(legacyConfigPath).mtime
)) {
fs.writeFileSync(configPath, fs.readFileSync(legacyConfigPath))
}
}
2018-10-06 21:50:06 +03:00
export function loadConfig (): any {
2021-06-30 00:57:04 +03:00
migrateConfig()
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 {}
}
}