blob: 1b795e3e8088a43b155adba7c1626ad18bd6c25f (
plain)
1
2
3
4
5
|
#!/bin/sh
# Obtain an id from ~/.config/dunst/dunstifyIDs by grepping a word. For using with dunstify for replaceable notifications.
cat $HOME/.config/dunst/dunstifyIDs | grep $1 | awk '{print $2}'
|