Plugin
NoMiddleClickPaste
Disable Linux middle-click paste - Linux only
1
/*2
* FiveCord — a Discord client mod3
* Copyright (c) 2025 FiveCord4
* SPDX-License-Identifier: GPL-3.0-or-later5
*/6
7
import { Devs, IS_LINUX } from "@utils/constants";8
import definePlugin from "@utils/types";9
10
function preventMiddleClick(e: MouseEvent) {11
if (e.button === 1) {12
e.preventDefault();13
}14
}15
16
export default definePlugin({17
name: "NoMiddleClickPaste",18
description: "Disable Linux middle-click paste - Linux only",19
authors: [Devs.Darxoon],20
hidden: !IS_LINUX,21
22
start() {23
window.addEventListener("mouseup", preventMiddleClick);24
},25
26
stop() {27
window.removeEventListener("mouseup", preventMiddleClick);28
},29
});30