1
0
Fork 0

feat: add all configs

This commit is contained in:
Oliver Ladner 2025-10-05 14:14:45 +02:00
commit 0267199f6e
23 changed files with 1673 additions and 0 deletions

12
home/oli/bin/alert.sh Executable file
View file

@ -0,0 +1,12 @@
#!/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"