Plugin

NoTypingAnimation

Disables the CPU-intensive typing dots animation

Appearance
index.ts
Download

Source

src/plugins/noTypingAnimation/index.ts
1import { Devs } from "@utils/constants";
2import definePlugin from "@utils/types";
3
4export default definePlugin({
5 name: "NoTypingAnimation",
6 authors: [Devs.AutumnVN],
7 description: "Disables the CPU-intensive typing dots animation",
8 tags: ["Appearance"],
9 patches: [
10 {
11 find: "dotCycle",
12 replacement: {
13 match: /focused:(\i)/g,
14 replace: (_, focused) => `_focused:${focused}=false`
15 }
16 }
17 ]
18});
19