blob: d7041124082103c0a9c3b792a4983b8fd305ab6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/env sh
if (/usr/local/bin/ishome && /usr/local/bin/hasyubi); then
notify-send "access bypass" "$1" &
exit 0
else
notify-send "awaiting authentication" "$1" &
exit 1
fi
|