/* * (C) 2011-2019 by Christian Hesse * * This software may be used and distributed according to the terms * of the GNU General Public License, incorporated herein by reference. */ #ifndef CONFIG_H #define CONFIG_H /* how long to show notifications */ #define NOTIFICATION_TIMEOUT 10000 /* define icons */ #define ICON_NETWORK_ADDRESS "netlink-notify-address" #define ICON_NETWORK_UP "netlink-notify-up" #define ICON_NETWORK_DOWN "netlink-notify-down" #define ICON_NETWORK_AWAY "netlink-notify-away" /* define notification text messages */ #define TEXT_TOPIC "Netlink Notification" #define TEXT_NEWLINK "Interface %s is %s." #define TEXT_WIRELESS "Interface %s is %s on %s." #define TEXT_NEWADDR "Interface %s has new %s address\n%s/%d." #define TEXT_DELLINK "Interface %s has gone away." #endif /* CONFIG_H */