feat: no system badges plugin (#33)
This commit is contained in:
parent
0a2c637c61
commit
e35393b40c
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
||||||
dist
|
dist
|
||||||
node_modules
|
node_modules
|
||||||
|
venboy.exe
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
|
|
23
src/plugins/noSystemBadge.ts
Normal file
23
src/plugins/noSystemBadge.ts
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
import { Devs } from "../utils/constants";
|
||||||
|
import definePlugin from "../utils/types";
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "NoSystemBadge",
|
||||||
|
description: "Disables the taskbar and system tray unread count badge.",
|
||||||
|
authors: [Devs.rushii],
|
||||||
|
patches: [
|
||||||
|
{
|
||||||
|
find: "setSystemTrayApplications:function",
|
||||||
|
replacement: [
|
||||||
|
{
|
||||||
|
match: /setBadge:function.+?},/,
|
||||||
|
replace: "setBadge:function(){},"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
match: /setSystemTrayIcon:function.+?},/,
|
||||||
|
replace: "setSystemTrayIcon:function(){},"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
|
@ -26,5 +26,9 @@ export const Devs = Object.freeze({
|
||||||
obscurity: {
|
obscurity: {
|
||||||
name: "obscurity",
|
name: "obscurity",
|
||||||
id: 336678828233588736n,
|
id: 336678828233588736n,
|
||||||
|
},
|
||||||
|
rushii: {
|
||||||
|
name: "rushii",
|
||||||
|
id: 295190422244950017n
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue