blob: 9663c8d0ce9791d1e7e15610bfc9aad3a4068f76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* settings.h - Definitions of settings keys and schema.
*/
#ifndef __SETTINGS_H__
#define __SETTINGS_H__
#define NOTIFICATIONS_SCHEMA "org.ayatana.indicator.notifications"
#define NOTIFICATIONS_KEY_FILTER_LIST "filter-list"
#define NOTIFICATIONS_KEY_FILTER_LIST_HINTS "filter-list-hints"
#define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click"
#define NOTIFICATIONS_KEY_DND "do-not-disturb"
#define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator"
#define NOTIFICATIONS_KEY_MAX_ITEMS "max-items"
#define NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS "swap-clear-settings"
#define MATE_SCHEMA "org.mate.NotificationDaemon"
#define MATE_KEY_DND "do-not-disturb"
#endif
|