Plugin
NoTypingAnimation
Disables the CPU-intensive typing dots animation
1
import { Devs } from "@utils/constants";2
import definePlugin from "@utils/types";3
4
export 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