xxwhirlpool
·
2026-03-10
highlight
1#!/usr/bin/env bash
2#
3# copied from senpai(5) man page
4
5escape() {
6 printf "%s" "$1" | sed 's#\\#\\\\#g'
7}
8
9notify-send "[$BUFFER] $SENDER:" "$(escape "$MESSAGE")"
1#!/usr/bin/env bash
2#
3# copied from senpai(5) man page
4
5escape() {
6 printf "%s" "$1" | sed 's#\\#\\\\#g'
7}
8
9notify-send "[$BUFFER] $SENDER:" "$(escape "$MESSAGE")"