1777146658

This commit is contained in:
2026-04-25 13:50:58 -06:00
parent 292841526c
commit d9e7860432
3 changed files with 21 additions and 12 deletions
+12 -11
View File
@@ -23,15 +23,16 @@ send_discord_webhook() {
while true; do #infinite loop
# scan for those vendor ids
blescan=$(eval "bluetoothctl -t 10 scan on | awk '{print \$3}' | grep ${vendor_ids[@]/#/-e }")
if [ -n "$blescan" ]; then
# LE detected poweroff to cryptdisk and notify
# alert spammmm
for((i=0;i<10;i++)); do
send_discord_webhook "FUZZ!!!" & # fork task to background to run more faster
# cryptsetup erase <device> # ion case you wanna nuke ur shit lmao
## these options are powerful, silent, fast, aND RIsky
poweroff --poweroff --force --no-wall # --no-sync
done
fi
if [ -n "$blescan" ]; then
# LE detected poweroff to cryptdisk and notify
# alert spammmm
for((i=0;i<10;i++)); do
send_discord_webhook "FUZZ!!!" & # fork task to background to run more faster
# cryptsetup erase <device> # ion case you wanna nuke ur shit lmao
## these options are powerful, silent, fast, aND RIsky
poweroff --poweroff --force --no-wall # --no-sync
done
fi
done