below is a security analysis done by clause code. reference https://x.com/adibhanna/status/2046988777789555191 repo: https://github.com/ritualPlay-Net/RitualPlay/ the scammer: https://www.linkedin.com/in/dean-gallimore-440669234/ his email: michael@ritualplay.net NOTE: if you decide to clone this repo, do NOT run npm install, or try to run it. it has a backdoor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ------------------------------------------------------------------------------ | |
| # /etc/tlp.conf - TLP user configuration (version 1.8.0) | |
| # See full explanation: https://linrunner.de/tlp/settings | |
| # | |
| # Copyright (c) 2025 Thomas Koch <linrunner at gmx.net> and others. | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # | |
| # Settings are read in the following order: | |
| # | |
| # 1. Intrinsic defaults |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/dwm.c b/dwm.c | |
| index 5e4d494..c20023e 100644 | |
| --- a/dwm.c | |
| +++ b/dwm.c | |
| @@ -1418,6 +1418,8 @@ sendmon(Client *c, Monitor *m) | |
| detachstack(c); | |
| c->mon = m; | |
| c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ | |
| + c->x = c->mon->mx + (c->mon->mw - WIDTH(c)) / 2; | |
| + c->y = c->mon->my + (c->mon->mh - HEIGHT(c)) / 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void | |
| togglefloating(const Arg *arg) | |
| { | |
| if (!selmon->sel) | |
| return; | |
| if (selmon->sel->isfullscreen) /* no support for fullscreen windows */ | |
| return; | |
| selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed; | |
| if (selmon->sel->isfloating) | |
| /* restore last known float dimensions */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Add gaps on monocle() and tile() if n == 1 only | |
| --- | |
| dwm.c | 6 ++++-- | |
| 1 file changed, 4 insertions(+), 2 deletions(-) | |
| diff --git a/dwm.c b/dwm.c | |
| index 1767b7f..a0e5b1f 100644 | |
| --- a/dwm.c | |
| +++ b/dwm.c | |
| @@ -1119,7 +1119,8 @@ monocle(Monitor *m) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void | |
| movethrow(const Arg *arg) | |
| { | |
| Client *c; | |
| int nh, nw, nx, ny; | |
| c = selmon->sel; | |
| if (selmon->lt[selmon->sellt]->arrange && !c->isfloating) | |
| togglefloating(NULL); | |
| nw = c->w; | |
| nh = c->h; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void | |
| warp(const Client *c) | |
| { | |
| int x, y; | |
| if (c || !c) { | |
| XWarpPointer(dpy, None, root, 0, 0, 0, 0, selmon->wx + selmon->ww, selmon->wy + selmon->wh); | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Define limit nmaster on config.h | |
| static const int maxnmaster = 4; | |
| */ | |
| void | |
| incnmaster(const Arg *arg) | |
| { | |
| selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag] = MAX(selmon->nmaster + arg->i, 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pulseaudio controls speaker volume up & down | |
| {XF86AudioRaiseVolume, XF86AudioLowerVolume} | |
| pamixer {-i 2, -d 2}; \ | |
| ou_vol=$(pamixer --get-volume); \ | |
| jack_stat=$($HOME/bin/has_headphone); \ | |
| [ $jack_stat = "yes" ] && icon=" "; \ | |
| [ $jack_stat = "no" ] && icon=" "; \ | |
| dunstify "$icon Volume: "$ou_vol -t 1000 -r 1 | |
| # pulseaudio controls mic volume up & down |
NewerOlder