mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-19 07:53:21 +00:00
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
|
const MacRunner = require('../../mac-runner')
|
||
|
const { compressPngImage } = require('../../utils')
|
||
|
|
||
|
module.exports = {
|
||
|
run: async (outputPath) => {
|
||
|
console.log('> Recording finder showWindowTitlebarIcons to true')
|
||
|
|
||
|
try {
|
||
|
const runner = new MacRunner()
|
||
|
await runner
|
||
|
.setDefault(
|
||
|
'com.apple.universalaccess',
|
||
|
'showWindowTitlebarIcons',
|
||
|
'-bool true',
|
||
|
'1'
|
||
|
)
|
||
|
.killApp('Finder')
|
||
|
.openApp('Finder', '~')
|
||
|
.captureApp('Finder', `${outputPath}/true.png`)
|
||
|
.deleteDefault('com.apple.universalaccess', 'showWindowTitlebarIcons')
|
||
|
.killApp('Finder')
|
||
|
.run()
|
||
|
} catch (runnerError) {
|
||
|
logRollbackInfo()
|
||
|
throw new Error(runnerError)
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
await compressPngImage(`${outputPath}/true.png`, outputPath, 'true')
|
||
|
} catch (compressPngImageError) {
|
||
|
logRollbackInfo()
|
||
|
throw new Error(compressPngImageError)
|
||
|
}
|
||
|
|
||
|
return { filepath: `${outputPath}/true` }
|
||
|
},
|
||
|
}
|
||
|
|
||
|
function logRollbackInfo() {
|
||
|
console.info(
|
||
|
'Please manually run this command to make sure everything is properly reset:'
|
||
|
)
|
||
|
console.info(
|
||
|
'defaults delete com.apple.universalaccess showWindowTitlebarIcons && killall Finder'
|
||
|
)
|
||
|
}
|