Signal-Desktop/ts/set_os_class.ts

21 lines
575 B
TypeScript
Raw Normal View History

2021-02-01 20:01:25 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2022-05-31 21:42:18 +00:00
{
2021-02-01 20:01:25 +00:00
let className: string;
if (window.SignalContext.OS.isWindows()) {
2021-02-01 20:01:25 +00:00
className = 'os-windows';
if (window.SignalContext.OS.isWindows11()) {
document.body.classList.add('os-windows-11');
}
} else if (window.SignalContext.OS.isMacOS()) {
2021-02-01 20:01:25 +00:00
className = 'os-macos';
} else if (window.SignalContext.OS.isLinux()) {
2021-02-01 20:01:25 +00:00
className = 'os-linux';
} else {
throw new Error('Unexpected operating system; not applying ');
}
2022-05-31 21:42:18 +00:00
document.body.classList.add(className);
}