6 lines
84 B
Bash
6 lines
84 B
Bash
#!/bin/bash
|
|
|
|
HOOK_NAME="$1"
|
|
HOOK_VALUE="$2"
|
|
|
|
notify-send "$HOOK_NAME" "$HOOK_VALUE"
|