1 2 3 4 5 6 7
#!/bin/bash CONFIG="$HOME/.config/dunst/dunstrc" if [[ ! $(pidof dunst) ]]; then dunst -conf ${CONFIG} fi
[PATCH repo_name]