aboutsummaryrefslogtreecommitdiff
path: root/include/Notification.hpp
blob: 22f2f7758cb3b370e7c41370ac5cd84d92435904 (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
26
27
28
29
30
31
32
#pragma once

#include "Program.h"
#include <assert.h>
#include <string>

namespace QuickMedia {
    enum class Urgency {
        LOW,
        NORMAL,
        CRITICAL
    };

    static 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;
    }

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