I have never seen this anywhere in my search I am making a script to see if I can send a string variable to notify-send so far
$MESSAGE='Hello world!'
notify-send "`$MESSAGE`" -t 1
will trow
Hello command not found
and
notify-send $MESSAGE -t 1
sends a too many argument error
so is there a way to do that?