@adlk/mojave-isdarkmode
v1.0.2
Published
Checks if dark mode is enabled on macOS Mojave
Downloads
7
Readme
macOS-isDarkMode
Simple module to check if macOS Mojave dark mode is enabled
This module is ready to be used in electron.
How to use
Install the module npm install @adlk/mojave-isdarkmode
.
import isDarkMode from "@adlk/mojave-isdarkmode";
async function config() {
const isDarkModeEnabled = await isDarkModeEnabled();
return {
randomAppConfig: true,
minimizeToSystemTray: false,
isDarkModeEnabled,
};
}