aboutsummaryrefslogtreecommitdiffstats
path: root/src/n_notify.h
blob: 0c69fa7f6dcbe498a8fe18fd6f80ce5012f8aad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ************************************************************************************ */
/*                                                                                      */
/*  File     : n_notify.h                                                 /_________/   */
/*  Author   : Joe                                                              |       */
/*  Date     : 04/2020                                                          |       */
/*  Info     : Uses libnotify lib to notify                                     |       */
/*                                                                      /       |       */
/*                                                                      \       /       */
/*                                                                       \_____/        */
/*                                                                                      */
/* ************************************************************************************ */

#ifndef JO_N_NOTIFY_H
#define JO_N_NOTIFY_H

#include <libnotify/notify.h>
#include <stddef.h>
#include <stdint.h>

#define	JO_LOWBAT "lowbat"

void	jo_n_notify(
			const char[],
			const char[],
			NotifyUrgency,	
			int32_t
			);

#endif