blob: 2439056d2a1c52f9d836a8f43bb4f9d6f6989dda (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
.TH SNOTIFD 1 2024-07-14
.SH name
Simple notification daemon
.SH SYNOPSIS
.B snotifd
.SH DESCRIPTION
.B snotifd
is a simple daemon meant to run per user, which can receive and store notifications via DBus in memory.
All notifications will be cleared on restart of the daemon.
It is a quite straight forward program, you start it, and it will be listening to the DBus,
the intended way to interact with it is to use
.BR snotifc (1)
which implements the nesecarry functions to connect via the
.BR snotifd.Notifications
DBus-interface.
It can be built with
.PP
.nf
.RS
make
.RE
.fi
.PP
after which you can install it to your user with
.PP
.nf
.RS
make install
.RE
.fi
.PP
Then you can run
.PP
.nf
.RS
systemctl --user enable --now snotifd
.RE
.fi
.PP
to start it if you are on a systemd-system.
If not, you can start it with ~/bin/snotifd.
.BR snotifc
is installed to ~/bin/snotifc.
Make sure that is in your path to be able to execute it.
.SH SEE ALSO
snotifc(1)
|