diff options
author | Diamond <33725716+DiamondMiner88@users.noreply.github.com> | 2022-10-03 17:36:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 02:36:02 +0200 |
commit | e35393b40cdf146644d7a136be422a9a280f56be (patch) | |
tree | 81282697cfb120b7b11cc2c3bddffa0394226e4c | |
parent | 0a2c637c61e0d954c10de73e095742cff9760736 (diff) | |
download | Vencord-e35393b40cdf146644d7a136be422a9a280f56be.tar.gz Vencord-e35393b40cdf146644d7a136be422a9a280f56be.tar.bz2 Vencord-e35393b40cdf146644d7a136be422a9a280f56be.zip |
feat: no system badges plugin (#33)
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | src/plugins/noSystemBadge.ts | 23 | ||||
-rw-r--r-- | src/utils/constants.ts | 4 |
3 files changed, 31 insertions, 1 deletions
@@ -1,2 +1,5 @@ dist -node_modules
\ No newline at end of file +node_modules +venboy.exe +.vscode +.idea diff --git a/src/plugins/noSystemBadge.ts b/src/plugins/noSystemBadge.ts new file mode 100644 index 0000000..25f873b --- /dev/null +++ b/src/plugins/noSystemBadge.ts @@ -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(){}," + } + ] + } + ] +}); diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 9f7374d..fe66218 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -26,5 +26,9 @@ export const Devs = Object.freeze({ obscurity: { name: "obscurity", id: 336678828233588736n, + }, + rushii: { + name: "rushii", + id: 295190422244950017n } }); |