aboutsummaryrefslogtreecommitdiff
path: root/src/Notification.cpp
blob: 848c74d8910b03dc9f631a5d025e832518236e66 (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
#include "../include/Notification.hpp"
#include "../include/Program.hpp"
#include <assert.h>
#include <stdio.h>

namespace QuickMedia {
    const char* urgency_string(Urgency urgency) {
        switch(urgency) {
            case Urgency::LOW:
                return "low";
            case Urgency::NORMAL:
                return "normal";
            case Urgency::CRITICAL:
                return "critical";
        }
        assert(false);
        return nullptr;
    }

    void show_notification(const std::string &title, const std::string &description, Urgency urgency) {
        fprintf(stderr, "Notification: title: %s, description: %s\n", title.c_str(), description.c_str());
        const char *args[] = { "notify-send", "-a", "QuickMedia", "-t", "10000", "-u", urgency_string(urgency), "--", title.c_str(), description.c_str(), nullptr };
        exec_program_async(args, nullptr);
    }
}