Plugin
NoTypingAnimation
Disables the CPU-intensive typing dots animation
1
/*2
* FiveCord — a Discord client mod3
* Copyright (c) 2025 FiveCord4
* SPDX-License-Identifier: GPL-3.0-or-later5
*/6
7
import { Devs } from "@utils/constants";8
import definePlugin from "@utils/types";9
10
export default definePlugin({11
name: "NoTypingAnimation",12
authors: [Devs.AutumnVN],13
description: "Disables the CPU-intensive typing dots animation",14
tags: ["Appearance"],15
patches: [16
{17
find: "dotCycle",18
replacement: {19
match: /focused:(\i)/g,20
replace: (_, focused) => `_focused:${focused}=false`21
}22
}23
]24
});25