aboutsummaryrefslogtreecommitdiffstats
path: root/src/jo_n_notify.h
blob: a72395ad94f714227f7639c3ef72440a933d9175 (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     : jo_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