1
0
Fork 0
archlinux/home/oli/bin/alert.sh
2025-10-05 14:14:45 +02:00

12 lines
218 B
Bash
Executable file

#!/usr/bin/env bash
#
# Send notifications to mako
# Priorities: low, normal, critical
# FIXME: this totally ignores escaping strings
app=script
prio=$1
title=$2
msg=$3
notify-send -a $app -u "$prio" "$title" "$msg"