mirror of
https://github.com/gosticks/vscode-vibrancy-continued.git
synced 2026-07-09 09:40:02 +00:00
12 lines
286 B
JavaScript
12 lines
286 B
JavaScript
let overwritten
|
|
module.exports = window => ({
|
|
install() {
|
|
overwritten = window.setBackgroundColor
|
|
const original = window.setBackgroundColor.bind(window)
|
|
window.setBackgroundColor = (bg) => original('#00000000')
|
|
},
|
|
uninstall() {
|
|
window.setBackgroundColor = overwritten
|
|
}
|
|
})
|