Files
scripts/notification-parse.sh
T
2026-06-11 13:47:48 -04:00

13 lines
503 B
Bash
Executable File

#!/usr/bin/env bash
n1='cute ass mf'
n2='backthr0w'
n3='lucca'
dbus-monitor "interface=org.freedesktop.Notifications" | grep -B 50 -i "dev.vencord.Vesktop" | grep -i -e "$n1" -e "$n2" -e $n3 --line-buffered |
while read found_line; do
echo "$found_line"
mpv --volume=50 --force-window=no "${HOME}/share/audio/dark_souls_2_parry.mp3" # replace with your command &
# ssh gaming-pc.mario F:/Scripts/jabra-headset-keepawake/mpv.exe F:/scripts/jabra-headset-keepawake/dark_souls_2_parry.mp3
done