macos-defaults/record/finder/AppleShowAllFiles/true.js

49 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-11-13 17:08:12 +00:00
const MacRunner = require('../../mac-runner')
const { compressPngImage } = require('../../utils')
module.exports = {
run: async (outputPath) => {
2020-11-13 17:08:12 +00:00
console.log('> Recording finder show hidden files to true')
try {
2020-11-13 17:08:12 +00:00
const runner = new MacRunner()
await runner
2020-11-27 12:45:16 +00:00
.setDefault(
'com.apple.Finder',
'AppleShowAllFiles',
2020-11-27 14:01:10 +00:00
'-bool true', '1',
'killall -SIGKILL Finder'
2020-11-27 12:45:16 +00:00
)
.openApp('Finder', '~')
.captureApp('Finder', `${outputPath}/true.png`)
2020-11-27 12:45:16 +00:00
.deleteDefault(
'com.apple.Finder',
'AppleShowAllFiles',
2020-11-27 14:01:10 +00:00
'killall -SIGKILL Finder'
2020-11-27 12:45:16 +00:00
)
2020-11-13 17:08:12 +00:00
.run()
} catch (runnerError) {
2020-11-13 17:08:12 +00:00
logRollbackInfo()
throw new Error(runnerError)
}
try {
await compressPngImage(`${outputPath}/true.png`, outputPath, 'true')
} catch (compressPngImageError) {
logRollbackInfo()
throw new Error(compressPngImageError)
}
return { filepath: `${outputPath}/true` }
},
2020-11-13 17:08:12 +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:'
)
console.info(
'defaults delete com.apple.Finder AppleShowAllFiles && killall Finder'
)
}