UNPKG
ctql
Version:
latest (0.0.9)
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.1
Clock Time Quest Log: Interactive, RPG-style quest tracker for Solo Devs
ctql
/
helpers
/
schedule
/
notify.ts
4 lines
(3 loc)
•
138 B
text/typescript
View Raw
1
2
3
4
export
async
function
notify
(
title
:
string
,
message
:
string
) {
await
Bun
.
$
`kitten notify -s system -a "ctql" "
${title}
" "
${message}
"`
; }