2019-10-16 10:21:44 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2021-03-18 17:14:37 +03:00
|
|
|
<link rel="stylesheet" href="dist/layout.css" />
|
2019-10-16 10:21:44 +02:00
|
|
|
<script>
|
|
|
|
|
window.output_from_webview = function(arg) {
|
|
|
|
|
if (typeof (window.external) !== 'undefined' && ('notify' in window.external)) {
|
|
|
|
|
window.external.notify(arg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function receive_from_settings_app(arg) {
|
|
|
|
|
window.react_app_component.receive_config_msg(JSON.parse(arg));
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
function exit_settings_app() {
|
|
|
|
|
window.react_app_component.receive_exit_request();
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
window.start_with_dark_theme = true;
|
|
|
|
|
</script>
|
|
|
|
|
<title>PowerToys Settings</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
<script src="dist/bundle.js" charset="UTF-8"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|