macos-defaults/record/dock/orientation/bottom.js

46 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-11-12 21:25:23 +00:00
const MacRunner = require('../../mac-runner')
const { compressPngImage } = require('../../utils')
module.exports = {
run: async (outputPath) => {
console.log('> Recording dock orientation with param set to bottom')
2020-11-12 21:25:23 +00:00
try {
const runner = new MacRunner()
await runner
2020-11-27 12:45:16 +00:00
.setDefault(
'com.apple.dock',
'orientation',
2020-11-27 14:01:10 +00:00
'-string bottom', 'bottom',
2020-11-27 12:45:16 +00:00
'killall Dock'
)
2020-11-12 21:25:23 +00:00
.captureScreen(`${outputPath}/bottom-tmp.png`)
.deleteDefault('com.apple.dock', 'orientation', 'killall Dock')
.run()
} catch (runnerError) {
logRollbackInfo()
2020-11-12 21:25:23 +00:00
throw new Error(runnerError)
}
try {
2020-11-27 12:45:16 +00:00
await compressPngImage(
`${outputPath}/bottom-tmp.png`,
outputPath,
'bottom'
)
} catch (compressPngImageError) {
logRollbackInfo()
throw new Error(compressPngImageError)
}
return { filepath: `${outputPath}/bottom` }
2020-11-27 12:45:16 +00:00
},
}
function logRollbackInfo() {
2020-11-27 12:45:16 +00:00
console.info(
'Please manually run this command to make sure everything is properly reset:'
)
2020-11-12 21:25:23 +00:00
console.info('defaults delete com.apple.dock orientation && killall Dock')
}