diff options
-rw-r--r-- | project.conf | 1 | ||||
-rw-r--r-- | src/main.cpp | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/project.conf b/project.conf index bfe9719..cf60d63 100644 --- a/project.conf +++ b/project.conf @@ -15,4 +15,3 @@ gl = "17.3" x11 = "1.6.5" libnsgif = "0.2.0" libpreview = "0.2.0" -libnotify = "0.7.0" diff --git a/src/main.cpp b/src/main.cpp index fa33556..541efae 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,14 +19,12 @@ #include <odhtdb/hex2bin.hpp> #include <ntp/NtpClient.hpp> #include <sibs/SafeSerializer.hpp> -#include <libnotify/notify.h> #include <X11/Xlib.h> using namespace std; using namespace dchat; static bool focused = true; -static NotifyNotification *notification = nullptr; void channelChangeUserNickname(Channel *channel, const StringView data, const odhtdb::Signature::PublicKey &userPublicKey) { @@ -66,12 +64,6 @@ void channelAddStoredMessage(Channel *channel, const odhtdb::Hash &requestHash, { string msg(decryptedData.data, decryptedData.size); channel->addLocalMessage(msg, user, ntp::NtpTimestamp::fromCombined(timestamp).seconds, requestHash); - if(!focused) - { - notify_notification_update(notification, "dchat", msg.c_str(), 0); - notify_notification_set_timeout(notification, 5000); // 5 sec timeout - notify_notification_show(notification, 0); - } break; } case ChannelDataType::DELETE_MESSAGE: @@ -113,8 +105,6 @@ int main(int argc, char **argv) printf("parent path: %s\n", parentPath.string().c_str()); boost::filesystem::current_path(parentPath); // Ensures loading of resources works no matter which path we run this executable from */ - notify_init("dchat"); - notification = notify_notification_new("dchat", "", 0); const int FRAMERATE_FOCUSED = 200; const int FRAMERATE_NOT_FOCUSED = 30; |