diff --git a/src/plugins/noTypingAnimation/index.ts b/src/plugins/noTypingAnimation/index.ts new file mode 100644 index 00000000..d4aab900 --- /dev/null +++ b/src/plugins/noTypingAnimation/index.ts @@ -0,0 +1,21 @@ +/* + * Vencord, a Discord client mod + * Copyright (c) 2023 Vendicated and contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +import { Devs } from "@utils/constants"; +import definePlugin from "@utils/types"; + +export default definePlugin({ + name: "NoTypingAnimation", + authors: [Devs.AutumnVN], + description: "Disables the CPU-intensive typing dots animation", + patches: [{ + find: "dotCycle", + replacement: { + match: /document.hasFocus\(\)/, + replace: "false" + } + }] +});