mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Compare commits
53 Commits
Author | SHA1 | Date | |
---|---|---|---|
68d9d2c347 | |||
f3fe57dd24 | |||
d4b97d5d09 | |||
f3975e6634 | |||
0dedcc0126 | |||
0e6147b644 | |||
45847847b9 | |||
c912d8c86a | |||
da0674debc | |||
137c5fb712 | |||
5a6e05dcde | |||
290f3a79e9 | |||
73553802f9 | |||
a13ce6e227 | |||
091b460d03 | |||
56e55fa4aa | |||
dc799adf45 | |||
75c9477aa8 | |||
75cf1d70fd | |||
9a333088e5 | |||
b231054b69 | |||
108b1092e5 | |||
a63650aa67 | |||
0e8b3f71b8 | |||
00959c7d65 | |||
d5d620e72d | |||
d914429194 | |||
fcdb8387af | |||
3e2e1a7018 | |||
86958f264e | |||
20ff2cab9e | |||
fc6e42d748 | |||
55e1905284 | |||
0abaaf2f7f | |||
f78ef0d491 | |||
de5df09fcd | |||
7020af7653 | |||
0eee8eade7 | |||
28c65c64e6 | |||
4f75d5e33b | |||
aa05304139 | |||
6dd9b5ccc4 | |||
d0933ab50f | |||
9a1b8bb831 | |||
53956d9d18 | |||
e9478f548e | |||
c8ca8b3725 | |||
0ad2bc7516 | |||
0dba3abc1d | |||
8be67d5008 | |||
49232eed8d | |||
b7e3d10fb7 | |||
8ce33e0c64 |
@ -7,13 +7,20 @@ namespace waybar {
|
|||||||
|
|
||||||
class ALabel : public IModule {
|
class ALabel : public IModule {
|
||||||
public:
|
public:
|
||||||
ALabel(Json::Value);
|
ALabel(const Json::Value&, const std::string format);
|
||||||
virtual ~ALabel() = default;
|
virtual ~ALabel() = default;
|
||||||
virtual auto update() -> void;
|
virtual auto update() -> void;
|
||||||
|
virtual std::string getIcon(uint16_t, const std::string& alt = "");
|
||||||
virtual operator Gtk::Widget &();
|
virtual operator Gtk::Widget &();
|
||||||
protected:
|
protected:
|
||||||
|
Gtk::EventBox event_box_;
|
||||||
Gtk::Label label_;
|
Gtk::Label label_;
|
||||||
Json::Value config_;
|
const Json::Value& config_;
|
||||||
|
std::string format_;
|
||||||
|
private:
|
||||||
|
bool handleToggle(GdkEventButton* const& ev);
|
||||||
|
bool alt = false;
|
||||||
|
const std::string default_format_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6,9 +6,10 @@ namespace waybar {
|
|||||||
|
|
||||||
class IModule {
|
class IModule {
|
||||||
public:
|
public:
|
||||||
virtual ~IModule() {}
|
virtual ~IModule() = default;
|
||||||
virtual auto update() -> void = 0;
|
virtual auto update() -> void = 0;
|
||||||
virtual operator Gtk::Widget &() = 0;
|
virtual operator Gtk::Widget &() = 0;
|
||||||
|
Glib::Dispatcher dp; // Hmmm Maybe I should create an abstract class ?
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -13,12 +13,12 @@ class Factory;
|
|||||||
|
|
||||||
class Bar {
|
class Bar {
|
||||||
public:
|
public:
|
||||||
Bar(Client&, std::unique_ptr<struct wl_output *>&&, uint32_t wl_name);
|
Bar(const Client&, std::unique_ptr<struct wl_output *>&&, uint32_t);
|
||||||
Bar(const Bar&) = delete;
|
Bar(const Bar&) = delete;
|
||||||
|
|
||||||
auto toggle() -> void;
|
auto toggle() -> void;
|
||||||
|
|
||||||
Client& client;
|
const Client& client;
|
||||||
Gtk::Window window;
|
Gtk::Window window;
|
||||||
struct wl_surface *surface;
|
struct wl_surface *surface;
|
||||||
struct zwlr_layer_surface_v1 *layer_surface;
|
struct zwlr_layer_surface_v1 *layer_surface;
|
||||||
@ -43,7 +43,7 @@ class Bar {
|
|||||||
auto setupConfig() -> void;
|
auto setupConfig() -> void;
|
||||||
auto setupWidgets() -> void;
|
auto setupWidgets() -> void;
|
||||||
auto setupCss() -> void;
|
auto setupCss() -> void;
|
||||||
void getModules(Factory factory, const std::string& pos);
|
void getModules(const Factory&, const std::string&);
|
||||||
|
|
||||||
uint32_t width_ = 0;
|
uint32_t width_ = 0;
|
||||||
uint32_t height_ = 30;
|
uint32_t height_ = 30;
|
||||||
|
@ -2,14 +2,10 @@
|
|||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <wordexp.h>
|
#include <wordexp.h>
|
||||||
|
|
||||||
#include <fmt/format.h>
|
#include <fmt/format.h>
|
||||||
|
|
||||||
#include <gdk/gdk.h>
|
#include <gdk/gdk.h>
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
|
|
||||||
#include <gdk/gdkwayland.h>
|
#include <gdk/gdkwayland.h>
|
||||||
|
|
||||||
#include "bar.hpp"
|
#include "bar.hpp"
|
||||||
|
|
||||||
namespace waybar {
|
namespace waybar {
|
||||||
@ -30,14 +26,14 @@ class Client {
|
|||||||
struct wl_seat *seat = nullptr;
|
struct wl_seat *seat = nullptr;
|
||||||
std::vector<std::unique_ptr<Bar>> bars;
|
std::vector<std::unique_ptr<Bar>> bars;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void bindInterfaces();
|
void bindInterfaces();
|
||||||
auto setupCss();
|
auto setupCss();
|
||||||
|
|
||||||
static void handleGlobal(void *data, struct wl_registry *registry,
|
static void handleGlobal(void *data, struct wl_registry *registry,
|
||||||
uint32_t name, const char *interface, uint32_t version);
|
uint32_t name, const char *interface, uint32_t version);
|
||||||
static void handleGlobalRemove(void *data,
|
static void handleGlobalRemove(void *data,
|
||||||
struct wl_registry *registry, uint32_t name);
|
struct wl_registry *registry, uint32_t name);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -2,24 +2,33 @@
|
|||||||
|
|
||||||
#include <json/json.h>
|
#include <json/json.h>
|
||||||
#include "modules/clock.hpp"
|
#include "modules/clock.hpp"
|
||||||
|
#ifdef HAVE_SWAY
|
||||||
#include "modules/sway/workspaces.hpp"
|
#include "modules/sway/workspaces.hpp"
|
||||||
#include "modules/sway/window.hpp"
|
#include "modules/sway/window.hpp"
|
||||||
|
#endif
|
||||||
#include "modules/battery.hpp"
|
#include "modules/battery.hpp"
|
||||||
#include "modules/memory.hpp"
|
#include "modules/memory.hpp"
|
||||||
#include "modules/cpu.hpp"
|
#include "modules/cpu.hpp"
|
||||||
|
#include "modules/sni/tray.hpp"
|
||||||
|
#ifdef HAVE_LIBNL
|
||||||
#include "modules/network.hpp"
|
#include "modules/network.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBPULSE
|
||||||
#include "modules/pulseaudio.hpp"
|
#include "modules/pulseaudio.hpp"
|
||||||
|
#endif
|
||||||
#include "modules/custom.hpp"
|
#include "modules/custom.hpp"
|
||||||
|
|
||||||
namespace waybar {
|
namespace waybar {
|
||||||
|
|
||||||
|
class Bar;
|
||||||
|
|
||||||
class Factory {
|
class Factory {
|
||||||
public:
|
public:
|
||||||
Factory(Bar &bar, Json::Value config);
|
Factory(Bar& bar, const Json::Value& config);
|
||||||
IModule* makeModule(const std::string &name);
|
IModule* makeModule(const std::string &name) const;
|
||||||
private:
|
private:
|
||||||
Bar &_bar;
|
Bar& bar_;
|
||||||
Json::Value _config;
|
const Json::Value& config_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -15,13 +15,13 @@ namespace fs = std::filesystem;
|
|||||||
|
|
||||||
class Battery : public ALabel {
|
class Battery : public ALabel {
|
||||||
public:
|
public:
|
||||||
Battery(Json::Value);
|
Battery(const Json::Value&);
|
||||||
~Battery();
|
~Battery();
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
std::string getIcon(uint16_t percentage);
|
|
||||||
|
|
||||||
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
|
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
|
||||||
|
|
||||||
|
void worker();
|
||||||
|
|
||||||
util::SleeperThread thread_;
|
util::SleeperThread thread_;
|
||||||
std::vector<fs::path> batteries_;
|
std::vector<fs::path> batteries_;
|
||||||
|
@ -9,7 +9,7 @@ namespace waybar::modules {
|
|||||||
|
|
||||||
class Clock : public ALabel {
|
class Clock : public ALabel {
|
||||||
public:
|
public:
|
||||||
Clock(Json::Value);
|
Clock(const Json::Value&);
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
waybar::util::SleeperThread thread_;
|
waybar::util::SleeperThread thread_;
|
||||||
|
@ -9,7 +9,7 @@ namespace waybar::modules {
|
|||||||
|
|
||||||
class Cpu : public ALabel {
|
class Cpu : public ALabel {
|
||||||
public:
|
public:
|
||||||
Cpu(Json::Value);
|
Cpu(const Json::Value&);
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
waybar::util::SleeperThread thread_;
|
waybar::util::SleeperThread thread_;
|
||||||
|
@ -10,11 +10,15 @@ namespace waybar::modules {
|
|||||||
|
|
||||||
class Custom : public ALabel {
|
class Custom : public ALabel {
|
||||||
public:
|
public:
|
||||||
Custom(std::string, Json::Value);
|
Custom(const std::string, const Json::Value&);
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
std::string name_;
|
void delayWorker();
|
||||||
|
void continuousWorker();
|
||||||
|
|
||||||
|
const std::string name_;
|
||||||
waybar::util::SleeperThread thread_;
|
waybar::util::SleeperThread thread_;
|
||||||
|
waybar::util::command::res output_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ namespace waybar::modules {
|
|||||||
|
|
||||||
class Memory : public ALabel {
|
class Memory : public ALabel {
|
||||||
public:
|
public:
|
||||||
Memory(Json::Value);
|
Memory(const Json::Value&);
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
waybar::util::SleeperThread thread_;
|
waybar::util::SleeperThread thread_;
|
||||||
|
@ -13,15 +13,16 @@ namespace waybar::modules {
|
|||||||
|
|
||||||
class Network : public ALabel {
|
class Network : public ALabel {
|
||||||
public:
|
public:
|
||||||
Network(Json::Value);
|
Network(const Json::Value&);
|
||||||
~Network();
|
~Network();
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
static uint64_t netlinkRequest(int, void*, uint32_t, uint32_t groups = 0);
|
static int netlinkRequest(int, void*, uint32_t, uint32_t groups = 0);
|
||||||
static uint64_t netlinkResponse(int, void*, uint32_t, uint32_t groups = 0);
|
static int netlinkResponse(int, void*, uint32_t, uint32_t groups = 0);
|
||||||
static int scanCb(struct nl_msg*, void*);
|
static int scanCb(struct nl_msg*, void*);
|
||||||
|
|
||||||
void disconnected();
|
void disconnected();
|
||||||
|
void initNL80211();
|
||||||
int getExternalInterface();
|
int getExternalInterface();
|
||||||
void parseEssid(struct nlattr**);
|
void parseEssid(struct nlattr**);
|
||||||
void parseSignal(struct nlattr**);
|
void parseSignal(struct nlattr**);
|
||||||
@ -32,7 +33,9 @@ class Network : public ALabel {
|
|||||||
int ifid_;
|
int ifid_;
|
||||||
sa_family_t family_;
|
sa_family_t family_;
|
||||||
int sock_fd_;
|
int sock_fd_;
|
||||||
struct sockaddr_nl nladdr_ = {0};
|
struct sockaddr_nl nladdr_ = {};
|
||||||
|
struct nl_sock* sk_ = nullptr;
|
||||||
|
int nl80211_id_;
|
||||||
|
|
||||||
std::string essid_;
|
std::string essid_;
|
||||||
std::string ifname_;
|
std::string ifname_;
|
||||||
|
@ -9,7 +9,7 @@ namespace waybar::modules {
|
|||||||
|
|
||||||
class Pulseaudio : public ALabel {
|
class Pulseaudio : public ALabel {
|
||||||
public:
|
public:
|
||||||
Pulseaudio(Json::Value);
|
Pulseaudio(const Json::Value&);
|
||||||
~Pulseaudio();
|
~Pulseaudio();
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
@ -19,7 +19,7 @@ class Pulseaudio : public ALabel {
|
|||||||
static void sinkInfoCb(pa_context*, const pa_sink_info*, int, void*);
|
static void sinkInfoCb(pa_context*, const pa_sink_info*, int, void*);
|
||||||
static void serverInfoCb(pa_context*, const pa_server_info*, void*);
|
static void serverInfoCb(pa_context*, const pa_server_info*, void*);
|
||||||
|
|
||||||
std::string getIcon(uint16_t);
|
const std::string getPortIcon() const;
|
||||||
|
|
||||||
pa_threaded_mainloop* mainloop_;
|
pa_threaded_mainloop* mainloop_;
|
||||||
pa_mainloop_api* mainloop_api_;
|
pa_mainloop_api* mainloop_api_;
|
||||||
@ -27,6 +27,7 @@ class Pulseaudio : public ALabel {
|
|||||||
uint32_t sink_idx_{0};
|
uint32_t sink_idx_{0};
|
||||||
uint16_t volume_;
|
uint16_t volume_;
|
||||||
bool muted_;
|
bool muted_;
|
||||||
|
std::string port_name_;
|
||||||
std::string desc_;
|
std::string desc_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
39
include/modules/sni/snh.hpp
Normal file
39
include/modules/sni/snh.hpp
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <gtkmm.h>
|
||||||
|
|
||||||
|
#include <tuple>
|
||||||
|
#include <dbus-status-notifier-watcher.h>
|
||||||
|
#include "modules/sni/sni.hpp"
|
||||||
|
|
||||||
|
namespace waybar::modules::SNI {
|
||||||
|
|
||||||
|
class Host {
|
||||||
|
public:
|
||||||
|
Host(Glib::Dispatcher*);
|
||||||
|
std::vector<Item> items;
|
||||||
|
private:
|
||||||
|
static void busAcquired(GDBusConnection*, const gchar*, gpointer);
|
||||||
|
static void nameAppeared(GDBusConnection*, const gchar*, const gchar*,
|
||||||
|
gpointer);
|
||||||
|
static void nameVanished(GDBusConnection*, const gchar*, gpointer);
|
||||||
|
static void proxyReady(GObject*, GAsyncResult*, gpointer);
|
||||||
|
static void registerHost(GObject*, GAsyncResult*, gpointer);
|
||||||
|
static void itemRegistered(SnOrgKdeStatusNotifierWatcher*, const gchar*,
|
||||||
|
gpointer);
|
||||||
|
static void itemUnregistered(SnOrgKdeStatusNotifierWatcher*, const gchar*,
|
||||||
|
gpointer);
|
||||||
|
|
||||||
|
std::tuple<std::string, std::string> getBusNameAndObjectPath(const gchar*);
|
||||||
|
void addRegisteredItem(const gchar* service);
|
||||||
|
|
||||||
|
uint32_t bus_name_id_;
|
||||||
|
uint32_t watcher_id_;
|
||||||
|
std::string bus_name_;
|
||||||
|
std::string object_path_;
|
||||||
|
Glib::Dispatcher* dp_;
|
||||||
|
GCancellable* cancellable_ = nullptr;
|
||||||
|
SnOrgKdeStatusNotifierWatcher* watcher_ = nullptr;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
51
include/modules/sni/sni.hpp
Normal file
51
include/modules/sni/sni.hpp
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <dbus-status-notifier-item.h>
|
||||||
|
#include <gtkmm.h>
|
||||||
|
|
||||||
|
namespace waybar::modules::SNI {
|
||||||
|
|
||||||
|
class Item {
|
||||||
|
public:
|
||||||
|
Item(std::string, std::string, Glib::Dispatcher *);
|
||||||
|
|
||||||
|
std::string bus_name;
|
||||||
|
std::string object_path;
|
||||||
|
Gtk::EventBox event_box;
|
||||||
|
|
||||||
|
int icon_size;
|
||||||
|
int effective_icon_size;
|
||||||
|
Gtk::Image *image;
|
||||||
|
Gtk::Menu *gtk_menu = nullptr;
|
||||||
|
std::string category;
|
||||||
|
std::string id;
|
||||||
|
std::string status;
|
||||||
|
|
||||||
|
std::string title;
|
||||||
|
int32_t window_id;
|
||||||
|
std::string icon_name;
|
||||||
|
Glib::RefPtr<Gdk::Pixbuf> icon_pixmap;
|
||||||
|
std::string overlay_icon_name;
|
||||||
|
std::string attention_icon_name;
|
||||||
|
std::string attention_movie_name;
|
||||||
|
std::string icon_theme_path;
|
||||||
|
std::string menu;
|
||||||
|
bool item_is_menu;
|
||||||
|
|
||||||
|
private:
|
||||||
|
static void proxyReady(GObject *obj, GAsyncResult *res, gpointer data);
|
||||||
|
static void getAll(GObject *obj, GAsyncResult *res, gpointer data);
|
||||||
|
static void handleActivate(GObject *, GAsyncResult *, gpointer);
|
||||||
|
static void handleSecondaryActivate(GObject *, GAsyncResult *, gpointer);
|
||||||
|
|
||||||
|
void updateImage();
|
||||||
|
Glib::RefPtr<Gdk::Pixbuf> extractPixBuf(GVariant *variant);
|
||||||
|
Glib::RefPtr<Gdk::Pixbuf> getIconByName(std::string name, int size);
|
||||||
|
bool handleClick(GdkEventButton *const & /*ev*/);
|
||||||
|
|
||||||
|
Glib::Dispatcher *dp_;
|
||||||
|
GCancellable *cancellable_ = nullptr;
|
||||||
|
SnOrgKdeStatusNotifierItem *proxy_ = nullptr;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace waybar::modules::SNI
|
47
include/modules/sni/snw.hpp
Normal file
47
include/modules/sni/snw.hpp
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <gtkmm.h>
|
||||||
|
#include <dbus-status-notifier-watcher.h>
|
||||||
|
|
||||||
|
namespace waybar::modules::SNI {
|
||||||
|
|
||||||
|
class Watcher {
|
||||||
|
public:
|
||||||
|
Watcher();
|
||||||
|
~Watcher();
|
||||||
|
|
||||||
|
private:
|
||||||
|
typedef enum { GF_WATCH_TYPE_HOST, GF_WATCH_TYPE_ITEM } GfWatchType;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
GfWatchType type;
|
||||||
|
Watcher *watcher;
|
||||||
|
gchar *service;
|
||||||
|
gchar *bus_name;
|
||||||
|
gchar *object_path;
|
||||||
|
guint watch_id;
|
||||||
|
} GfWatch;
|
||||||
|
|
||||||
|
static void busAcquired(GDBusConnection *, const gchar *, gpointer);
|
||||||
|
static gboolean handleRegisterHost(Watcher *, GDBusMethodInvocation *,
|
||||||
|
const gchar *);
|
||||||
|
static gboolean handleRegisterItem(Watcher *, GDBusMethodInvocation *,
|
||||||
|
const gchar *);
|
||||||
|
static GfWatch *gfWatchFind(GSList *list, const gchar *bus_name,
|
||||||
|
const gchar *object_path);
|
||||||
|
static GfWatch *gfWatchNew(GfWatchType, const gchar *, const gchar *,
|
||||||
|
const gchar *, Watcher *);
|
||||||
|
static void nameVanished(GDBusConnection *connection, const char *name,
|
||||||
|
gpointer data);
|
||||||
|
|
||||||
|
void updateRegisteredItems(SnOrgKdeStatusNotifierWatcher *obj);
|
||||||
|
|
||||||
|
uint32_t bus_name_id_;
|
||||||
|
uint32_t watcher_id_;
|
||||||
|
GSList *hosts_ = nullptr;
|
||||||
|
GSList *items_ = nullptr;
|
||||||
|
SnOrgKdeStatusNotifierWatcher *watcher_ = nullptr;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace waybar::modules::SNI
|
||||||
|
|
25
include/modules/sni/tray.hpp
Normal file
25
include/modules/sni/tray.hpp
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <fmt/format.h>
|
||||||
|
#include <thread>
|
||||||
|
#include "util/json.hpp"
|
||||||
|
#include "IModule.hpp"
|
||||||
|
#include "modules/sni/snw.hpp"
|
||||||
|
#include "modules/sni/snh.hpp"
|
||||||
|
|
||||||
|
namespace waybar::modules::SNI {
|
||||||
|
|
||||||
|
class Tray : public IModule {
|
||||||
|
public:
|
||||||
|
Tray(const Json::Value&);
|
||||||
|
auto update() -> void;
|
||||||
|
operator Gtk::Widget &();
|
||||||
|
private:
|
||||||
|
std::thread thread_;
|
||||||
|
const Json::Value& config_;
|
||||||
|
Gtk::Box box_;
|
||||||
|
SNI::Watcher watcher_ ;
|
||||||
|
SNI::Host host_;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1,33 +1,41 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <sys/un.h>
|
||||||
#include "ipc.hpp"
|
#include "ipc.hpp"
|
||||||
|
|
||||||
/**
|
namespace waybar::modules::sway {
|
||||||
* IPC response including type of IPC response, size of payload and the json
|
|
||||||
* encoded payload string.
|
class Ipc {
|
||||||
*/
|
public:
|
||||||
struct ipc_response {
|
Ipc();
|
||||||
uint32_t size;
|
~Ipc();
|
||||||
uint32_t type;
|
|
||||||
std::string payload;
|
struct ipc_response {
|
||||||
|
uint32_t size;
|
||||||
|
uint32_t type;
|
||||||
|
std::string payload;
|
||||||
|
};
|
||||||
|
|
||||||
|
void connect();
|
||||||
|
struct ipc_response sendCmd(uint32_t type,
|
||||||
|
const std::string& payload = "") const;
|
||||||
|
void subscribe(const std::string& payload) const;
|
||||||
|
struct ipc_response handleEvent() const;
|
||||||
|
protected:
|
||||||
|
static inline const std::string ipc_magic_ = "i3-ipc";
|
||||||
|
static inline const size_t ipc_header_size_ = ipc_magic_.size() + 8;
|
||||||
|
|
||||||
|
const std::string getSocketPath() const;
|
||||||
|
int open(const std::string&) const;
|
||||||
|
struct ipc_response send(int fd, uint32_t type,
|
||||||
|
const std::string& payload = "") const;
|
||||||
|
struct ipc_response recv(int fd) const;
|
||||||
|
|
||||||
|
int fd_;
|
||||||
|
int fd_event_;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
}
|
||||||
* Gets the path to the IPC socket from sway.
|
|
||||||
*/
|
|
||||||
std::string getSocketPath(void);
|
|
||||||
/**
|
|
||||||
* Opens the sway socket.
|
|
||||||
*/
|
|
||||||
int ipcOpenSocket(const std::string &socketPath);
|
|
||||||
/**
|
|
||||||
* Issues a single IPC command and returns the buffer. len will be updated with
|
|
||||||
* the length of the buffer returned from sway.
|
|
||||||
*/
|
|
||||||
struct ipc_response ipcSingleCommand(int socketfd, uint32_t type,
|
|
||||||
const std::string& payload);
|
|
||||||
/**
|
|
||||||
* Receives a single IPC response and returns an ipc_response.
|
|
||||||
*/
|
|
||||||
struct ipc_response ipcRecvResponse(int socketfd);
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define event_mask(ev) (1 << (ev & 0x7F))
|
#define event_mask(ev) (1u << (ev & 0x7F))
|
||||||
|
|
||||||
enum ipc_command_type {
|
enum ipc_command_type {
|
||||||
// i3 command types - see i3's I3_REPLY_TYPE constants
|
// i3 command types - see i3's I3_REPLY_TYPE constants
|
||||||
|
@ -1,29 +1,31 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <fmt/format.h>
|
#include <fmt/format.h>
|
||||||
|
#include <tuple>
|
||||||
#include "bar.hpp"
|
#include "bar.hpp"
|
||||||
#include "client.hpp"
|
#include "client.hpp"
|
||||||
#include "util/chrono.hpp"
|
#include "util/chrono.hpp"
|
||||||
#include "util/json.hpp"
|
#include "util/json.hpp"
|
||||||
#include "ALabel.hpp"
|
#include "ALabel.hpp"
|
||||||
|
#include "modules/sway/ipc/client.hpp"
|
||||||
|
|
||||||
namespace waybar::modules::sway {
|
namespace waybar::modules::sway {
|
||||||
|
|
||||||
class Window : public ALabel {
|
class Window : public ALabel {
|
||||||
public:
|
public:
|
||||||
Window(waybar::Bar&, Json::Value);
|
Window(waybar::Bar&, const Json::Value&);
|
||||||
~Window();
|
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
private:
|
private:
|
||||||
std::string getFocusedNode(Json::Value nodes);
|
void worker();
|
||||||
|
std::tuple<int, std::string> getFocusedNode(Json::Value nodes);
|
||||||
void getFocusedWindow();
|
void getFocusedWindow();
|
||||||
|
|
||||||
Bar& bar_;
|
Bar& bar_;
|
||||||
waybar::util::SleeperThread thread_;
|
waybar::util::SleeperThread thread_;
|
||||||
util::JsonParser parser_;
|
util::JsonParser parser_;
|
||||||
int ipcfd_;
|
Ipc ipc_;
|
||||||
int ipc_eventfd_;
|
|
||||||
std::string window_;
|
std::string window_;
|
||||||
|
int windowId_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6,24 +6,25 @@
|
|||||||
#include "util/chrono.hpp"
|
#include "util/chrono.hpp"
|
||||||
#include "util/json.hpp"
|
#include "util/json.hpp"
|
||||||
#include "IModule.hpp"
|
#include "IModule.hpp"
|
||||||
|
#include "modules/sway/ipc/client.hpp"
|
||||||
|
|
||||||
namespace waybar::modules::sway {
|
namespace waybar::modules::sway {
|
||||||
|
|
||||||
class Workspaces : public IModule {
|
class Workspaces : public IModule {
|
||||||
public:
|
public:
|
||||||
Workspaces(waybar::Bar&, Json::Value);
|
Workspaces(waybar::Bar&, const Json::Value&);
|
||||||
~Workspaces();
|
|
||||||
auto update() -> void;
|
auto update() -> void;
|
||||||
operator Gtk::Widget &();
|
operator Gtk::Widget &();
|
||||||
private:
|
private:
|
||||||
|
void worker();
|
||||||
void addWorkspace(Json::Value);
|
void addWorkspace(Json::Value);
|
||||||
std::string getIcon(std::string);
|
std::string getIcon(std::string, Json::Value);
|
||||||
bool handleScroll(GdkEventScroll*);
|
bool handleScroll(GdkEventScroll*);
|
||||||
int getPrevWorkspace();
|
int getPrevWorkspace();
|
||||||
int getNextWorkspace();
|
int getNextWorkspace();
|
||||||
|
|
||||||
Bar& bar_;
|
Bar& bar_;
|
||||||
Json::Value config_;
|
const Json::Value& config_;
|
||||||
waybar::util::SleeperThread thread_;
|
waybar::util::SleeperThread thread_;
|
||||||
Gtk::Box box_;
|
Gtk::Box box_;
|
||||||
util::JsonParser parser_;
|
util::JsonParser parser_;
|
||||||
@ -31,8 +32,7 @@ class Workspaces : public IModule {
|
|||||||
bool scrolling_;
|
bool scrolling_;
|
||||||
std::unordered_map<int, Gtk::Button> buttons_;
|
std::unordered_map<int, Gtk::Button> buttons_;
|
||||||
Json::Value workspaces_;
|
Json::Value workspaces_;
|
||||||
int ipcfd_;
|
Ipc ipc_;
|
||||||
int ipc_eventfd_;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -70,18 +70,19 @@ struct SleeperThread {
|
|||||||
condvar_.notify_all();
|
condvar_.notify_all();
|
||||||
}
|
}
|
||||||
|
|
||||||
~SleeperThread()
|
auto stop()
|
||||||
{
|
{
|
||||||
do_run_ = false;
|
do_run_ = false;
|
||||||
condvar_.notify_all();
|
condvar_.notify_all();
|
||||||
auto native_handle = thread_.native_handle();
|
|
||||||
pthread_cancel(native_handle);
|
|
||||||
if (thread_.joinable()) {
|
if (thread_.joinable()) {
|
||||||
thread_.join();
|
thread_.detach();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sigc::signal<void> sig_update;
|
~SleeperThread()
|
||||||
|
{
|
||||||
|
stop();
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::thread thread_;
|
std::thread thread_;
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
|
|
||||||
namespace waybar::util::command {
|
namespace waybar::util::command {
|
||||||
|
|
||||||
struct cmd_res {
|
struct res {
|
||||||
int exit_code;
|
int exit_code;
|
||||||
std::string out;
|
std::string out;
|
||||||
};
|
};
|
||||||
|
|
||||||
inline struct cmd_res exec(const std::string cmd)
|
inline struct res exec(const std::string cmd)
|
||||||
{
|
{
|
||||||
FILE* fp(popen(cmd.c_str(), "r"));
|
FILE* fp(popen(cmd.c_str(), "r"));
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
|
@ -7,32 +7,25 @@ namespace waybar::util {
|
|||||||
struct JsonParser {
|
struct JsonParser {
|
||||||
|
|
||||||
JsonParser()
|
JsonParser()
|
||||||
: _reader(_builder.newCharReader())
|
: reader_(builder_.newCharReader())
|
||||||
{}
|
{}
|
||||||
|
|
||||||
Json::Value parse(const std::string data)
|
const Json::Value parse(const std::string data) const
|
||||||
{
|
{
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
std::string err;
|
std::string err;
|
||||||
if (_reader == nullptr) {
|
|
||||||
throw std::runtime_error("Unable to parse");
|
|
||||||
}
|
|
||||||
bool res =
|
bool res =
|
||||||
_reader->parse(data.c_str(), data.c_str() + data.size(), &root, &err);
|
reader_->parse(data.c_str(), data.c_str() + data.size(), &root, &err);
|
||||||
if (!res)
|
if (!res)
|
||||||
throw std::runtime_error(err);
|
throw std::runtime_error(err);
|
||||||
return root;
|
return root;
|
||||||
}
|
}
|
||||||
|
|
||||||
~JsonParser()
|
~JsonParser() = default;
|
||||||
{
|
|
||||||
delete _reader;
|
|
||||||
_reader = nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Json::CharReaderBuilder _builder;
|
Json::CharReaderBuilder builder_;
|
||||||
Json::CharReader *_reader;
|
std::unique_ptr<Json::CharReader> const reader_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
61
meson.build
61
meson.build
@ -1,8 +1,11 @@
|
|||||||
project(
|
project(
|
||||||
'waybar', 'cpp', 'c',
|
'waybar', 'cpp', 'c',
|
||||||
version: '0.0.5',
|
version: '0.1.0',
|
||||||
license: 'MIT',
|
license: 'MIT',
|
||||||
default_options : ['cpp_std=c++17'],
|
default_options : [
|
||||||
|
'cpp_std=c++17',
|
||||||
|
'buildtype=release'
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
cpp_args = []
|
cpp_args = []
|
||||||
@ -29,16 +32,57 @@ wayland_cursor = dependency('wayland-cursor')
|
|||||||
wayland_protos = dependency('wayland-protocols')
|
wayland_protos = dependency('wayland-protocols')
|
||||||
wlroots = dependency('wlroots', fallback: ['wlroots', 'wlroots'])
|
wlroots = dependency('wlroots', fallback: ['wlroots', 'wlroots'])
|
||||||
gtkmm = dependency('gtkmm-3.0')
|
gtkmm = dependency('gtkmm-3.0')
|
||||||
|
dbusmenu_gtk = dependency('dbusmenu-gtk3-0.4', required: get_option('dbusmenu-gtk'))
|
||||||
jsoncpp = dependency('jsoncpp')
|
jsoncpp = dependency('jsoncpp')
|
||||||
sigcpp = dependency('sigc++-2.0')
|
sigcpp = dependency('sigc++-2.0')
|
||||||
libnl = dependency('libnl-3.0')
|
libnl = dependency('libnl-3.0', required: get_option('libnl'))
|
||||||
libnlgen = dependency('libnl-genl-3.0')
|
libnlgen = dependency('libnl-genl-3.0', required: get_option('libnl'))
|
||||||
libpulse = dependency('libpulse')
|
libpulse = dependency('libpulse', required: get_option('pulseaudio'))
|
||||||
|
|
||||||
|
src_files = files(
|
||||||
|
'src/factory.cpp',
|
||||||
|
'src/ALabel.cpp',
|
||||||
|
'src/modules/memory.cpp',
|
||||||
|
'src/modules/battery.cpp',
|
||||||
|
'src/modules/clock.cpp',
|
||||||
|
'src/modules/custom.cpp',
|
||||||
|
'src/modules/cpu.cpp',
|
||||||
|
'src/main.cpp',
|
||||||
|
'src/bar.cpp',
|
||||||
|
'src/client.cpp'
|
||||||
|
)
|
||||||
|
|
||||||
|
if find_program('sway', required : false).found()
|
||||||
|
add_project_arguments('-DHAVE_SWAY', language: 'cpp')
|
||||||
|
src_files += [
|
||||||
|
'src/modules/sway/ipc/client.cpp',
|
||||||
|
'src/modules/sway/window.cpp',
|
||||||
|
'src/modules/sway/workspaces.cpp'
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
|
if libnl.found() and libnlgen.found()
|
||||||
|
add_project_arguments('-DHAVE_LIBNL', language: 'cpp')
|
||||||
|
src_files += 'src/modules/network.cpp'
|
||||||
|
endif
|
||||||
|
|
||||||
|
if libpulse.found()
|
||||||
|
add_project_arguments('-DHAVE_LIBPULSE', language: 'cpp')
|
||||||
|
src_files += 'src/modules/pulseaudio.cpp'
|
||||||
|
endif
|
||||||
|
|
||||||
|
if dbusmenu_gtk.found()
|
||||||
|
add_project_arguments('-DHAVE_DBUSMENU', language: 'cpp')
|
||||||
|
src_files += files(
|
||||||
|
'src/modules/sni/tray.cpp',
|
||||||
|
'src/modules/sni/snw.cpp',
|
||||||
|
'src/modules/sni/snh.cpp',
|
||||||
|
'src/modules/sni/sni.cpp'
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
|
||||||
subdir('protocol')
|
subdir('protocol')
|
||||||
|
|
||||||
src_files = run_command('find', './src', '-name', '*.cpp').stdout().strip().split('\n')
|
|
||||||
|
|
||||||
executable(
|
executable(
|
||||||
'waybar',
|
'waybar',
|
||||||
src_files,
|
src_files,
|
||||||
@ -53,9 +97,10 @@ executable(
|
|||||||
libinput,
|
libinput,
|
||||||
wayland_cursor,
|
wayland_cursor,
|
||||||
gtkmm,
|
gtkmm,
|
||||||
|
dbusmenu_gtk,
|
||||||
libnl,
|
libnl,
|
||||||
libnlgen,
|
libnlgen,
|
||||||
libpulse,
|
libpulse
|
||||||
],
|
],
|
||||||
include_directories: [include_directories('include')],
|
include_directories: [include_directories('include')],
|
||||||
install: true,
|
install: true,
|
||||||
|
3
meson_options.txt
Normal file
3
meson_options.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
option('libnl', type: 'feature', value: 'auto', description: 'Enable libnl support for network related features')
|
||||||
|
option('pulseaudio', type: 'feature', value: 'auto', description: 'Enable support for pulseaudio')
|
||||||
|
option('dbusmenu-gtk', type: 'feature', value: 'auto', description: 'Enable support for tray')
|
BIN
preview-2.png
BIN
preview-2.png
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 5.3 KiB |
BIN
preview.png
BIN
preview.png
Binary file not shown.
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 22 KiB |
69
protocol/dbus-menu.xml
Normal file
69
protocol/dbus-menu.xml
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
|
||||||
|
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
||||||
|
<node>
|
||||||
|
<interface name="com.canonical.dbusmenu">
|
||||||
|
<!-- Properties -->
|
||||||
|
<property name="Version" type="u" access="read" />
|
||||||
|
<property name="TextDirection" type="s" access="read" />
|
||||||
|
<property name="Status" type="s" access="read" />
|
||||||
|
<property name="IconThemePath" type="as" access="read" />
|
||||||
|
|
||||||
|
<!-- Functions -->
|
||||||
|
<method name="GetLayout">
|
||||||
|
<arg type="i" name="parentId" direction="in" />
|
||||||
|
<arg type="i" name="recursionDepth" direction="in" />
|
||||||
|
<arg type="as" name="propertyNames" direction="in" />
|
||||||
|
<arg type="u" name="revision" direction="out" />
|
||||||
|
<arg type="(ia{sv}av)" name="layout" direction="out" />
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<method name="GetGroupProperties">
|
||||||
|
<arg type="ai" name="ids" direction="in" />
|
||||||
|
<arg type="as" name="propertyNames" direction="in" />
|
||||||
|
<arg type="a(ia{sv})" name="properties" direction="out" />
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<method name="GetProperty">
|
||||||
|
<arg type="i" name="id" direction="in" />
|
||||||
|
<arg type="s" name="name" direction="in" />
|
||||||
|
<arg type="v" name="value" direction="out" />
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<method name="Event">
|
||||||
|
<arg type="i" name="id" direction="in" />
|
||||||
|
<arg type="s" name="eventId" direction="in" />
|
||||||
|
<arg type="v" name="data" direction="in" />
|
||||||
|
<arg type="u" name="timestamp" direction="in" />
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<method name="EventGroup">
|
||||||
|
<arg type="a(isvu)" name="events" direction="in" />
|
||||||
|
<arg type="ai" name="idErrors" direction="out" />
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<method name="AboutToShow">
|
||||||
|
<arg type="i" name="id" direction="in" />
|
||||||
|
<arg type="b" name="needUpdate" direction="out" />
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<method name="AboutToShowGroup">
|
||||||
|
<arg type="ai" name="ids" direction="in" />
|
||||||
|
<arg type="ai" name="updatesNeeded" direction="out" />
|
||||||
|
<arg type="ai" name="idErrors" direction="out" />
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<!-- Signals -->
|
||||||
|
<signal name="ItemsPropertiesUpdated">
|
||||||
|
<arg type="a(ia{sv})" name="updatedProps" direction="out" />
|
||||||
|
<arg type="a(ias)" name="removedProps" direction="out" />
|
||||||
|
</signal>
|
||||||
|
<signal name="LayoutUpdated">
|
||||||
|
<arg type="u" name="revision" direction="out" />
|
||||||
|
<arg type="i" name="parent" direction="out" />
|
||||||
|
</signal>
|
||||||
|
<signal name="ItemActivationRequested">
|
||||||
|
<arg type="i" name="id" direction="out" />
|
||||||
|
<arg type="u" name="timestamp" direction="out" />
|
||||||
|
</signal>
|
||||||
|
</interface>
|
||||||
|
</node>
|
77
protocol/dbus-status-notifier-item.xml
Normal file
77
protocol/dbus-status-notifier-item.xml
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
|
||||||
|
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
||||||
|
<node>
|
||||||
|
<interface name="org.kde.StatusNotifierItem">
|
||||||
|
<property name="Category" type="s" access="read"/>
|
||||||
|
<property name="Id" type="s" access="read"/>
|
||||||
|
<property name="Title" type="s" access="read"/>
|
||||||
|
<property name="Status" type="s" access="read"/>
|
||||||
|
<property name="WindowId" type="i" access="read"/>
|
||||||
|
<property name="Menu" type="o" access="read" />
|
||||||
|
|
||||||
|
<!-- main icon -->
|
||||||
|
<!-- names are preferred over pixmaps -->
|
||||||
|
<property name="IconName" type="s" access="read" />
|
||||||
|
<property name="IconThemePath" type="s" access="read" />
|
||||||
|
|
||||||
|
<!-- struct containing width, height and image data-->
|
||||||
|
<!-- implementation has been dropped as of now -->
|
||||||
|
<property name="IconPixmap" type="a(iiay)" access="read" />
|
||||||
|
|
||||||
|
<!-- not used in ayatana code, no test case so far -->
|
||||||
|
<property name="OverlayIconName" type="s" access="read"/>
|
||||||
|
<property name="OverlayIconPixmap" type="a(iiay)" access="read" />
|
||||||
|
|
||||||
|
<!-- Requesting attention icon -->
|
||||||
|
<property name="AttentionIconName" type="s" access="read"/>
|
||||||
|
|
||||||
|
<!--same definition as image-->
|
||||||
|
<property name="AttentionIconPixmap" type="a(iiay)" access="read" />
|
||||||
|
|
||||||
|
<!-- tooltip data -->
|
||||||
|
<!-- unimplemented as of now -->
|
||||||
|
<!--(iiay) is an image-->
|
||||||
|
<property name="ToolTip" type="(sa(iiay)ss)" access="read" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- interaction: actually, we do not use them. -->
|
||||||
|
<method name="Activate">
|
||||||
|
<arg name="x" type="i" direction="in"/>
|
||||||
|
<arg name="y" type="i" direction="in"/>
|
||||||
|
</method>
|
||||||
|
<method name="SecondaryActivate">
|
||||||
|
<arg name="x" type="i" direction="in"/>
|
||||||
|
<arg name="y" type="i" direction="in"/>
|
||||||
|
</method>
|
||||||
|
<method name="Scroll">
|
||||||
|
<arg name="delta" type="i" direction="in"/>
|
||||||
|
<arg name="dir" type="s" direction="in"/>
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<!-- Signals: the client wants to change something in the status-->
|
||||||
|
<signal name="NewTitle"></signal>
|
||||||
|
<signal name="NewIcon"></signal>
|
||||||
|
<signal name="NewIconThemePath">
|
||||||
|
<arg type="s" name="icon_theme_path" direction="out" />
|
||||||
|
</signal>
|
||||||
|
<signal name="NewAttentionIcon"></signal>
|
||||||
|
<signal name="NewOverlayIcon"></signal>
|
||||||
|
<signal name="NewToolTip"></signal>
|
||||||
|
<signal name="NewStatus">
|
||||||
|
<arg name="status" type="s" />
|
||||||
|
</signal>
|
||||||
|
|
||||||
|
<!-- ayatana labels -->
|
||||||
|
<!-- These are commented out because GDBusProxy would otherwise require them,
|
||||||
|
but they are not available for KDE indicators
|
||||||
|
-->
|
||||||
|
<!--<signal name="XAyatanaNewLabel">
|
||||||
|
<arg type="s" name="label" direction="out" />
|
||||||
|
<arg type="s" name="guide" direction="out" />
|
||||||
|
</signal>
|
||||||
|
<property name="XAyatanaLabel" type="s" access="read" />
|
||||||
|
<property name="XAyatanaLabelGuide" type="s" access="read" />-->
|
||||||
|
|
||||||
|
|
||||||
|
</interface>
|
||||||
|
</node>
|
42
protocol/dbus-status-notifier-watcher.xml
Normal file
42
protocol/dbus-status-notifier-watcher.xml
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
||||||
|
<node>
|
||||||
|
<interface name="org.kde.StatusNotifierWatcher">
|
||||||
|
|
||||||
|
<!-- methods -->
|
||||||
|
<method name="RegisterStatusNotifierItem">
|
||||||
|
<arg name="service" type="s" direction="in"/>
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<method name="RegisterStatusNotifierHost">
|
||||||
|
<arg name="service" type="s" direction="in"/>
|
||||||
|
</method>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- properties -->
|
||||||
|
|
||||||
|
<property name="RegisteredStatusNotifierItems" type="as" access="read">
|
||||||
|
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QStringList"/>
|
||||||
|
</property>
|
||||||
|
|
||||||
|
<property name="IsStatusNotifierHostRegistered" type="b" access="read"/>
|
||||||
|
|
||||||
|
<property name="ProtocolVersion" type="i" access="read"/>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- signals -->
|
||||||
|
|
||||||
|
<signal name="StatusNotifierItemRegistered">
|
||||||
|
<arg type="s"/>
|
||||||
|
</signal>
|
||||||
|
|
||||||
|
<signal name="StatusNotifierItemUnregistered">
|
||||||
|
<arg type="s"/>
|
||||||
|
</signal>
|
||||||
|
|
||||||
|
<signal name="StatusNotifierHostRegistered">
|
||||||
|
</signal>
|
||||||
|
|
||||||
|
<signal name="StatusNotifierHostUnregistered">
|
||||||
|
</signal>
|
||||||
|
</interface>
|
||||||
|
</node>
|
@ -36,10 +36,32 @@ foreach p : client_protocols
|
|||||||
client_protos_headers += wayland_scanner_client.process(xml)
|
client_protos_headers += wayland_scanner_client.process(xml)
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
gdbus_code = generator(
|
||||||
|
find_program('gdbus-codegen'),
|
||||||
|
output: '@BASENAME@.c',
|
||||||
|
arguments: ['--c-namespace', 'Sn', '--body', '--output', '@OUTPUT@', '@INPUT@']
|
||||||
|
)
|
||||||
|
|
||||||
|
gdbus_header = generator(
|
||||||
|
find_program('gdbus-codegen'),
|
||||||
|
output: '@BASENAME@.h',
|
||||||
|
arguments: ['--c-namespace', 'Sn', '--header', '--output', '@OUTPUT@', '@INPUT@']
|
||||||
|
)
|
||||||
|
|
||||||
|
client_protos_src += gdbus_code.process('./dbus-status-notifier-watcher.xml')
|
||||||
|
client_protos_headers += gdbus_header.process('./dbus-status-notifier-watcher.xml')
|
||||||
|
|
||||||
|
client_protos_src += gdbus_code.process('./dbus-status-notifier-item.xml')
|
||||||
|
client_protos_headers += gdbus_header.process('./dbus-status-notifier-item.xml')
|
||||||
|
|
||||||
|
client_protos_src += gdbus_code.process('./dbus-menu.xml')
|
||||||
|
client_protos_headers += gdbus_header.process('./dbus-menu.xml')
|
||||||
|
|
||||||
lib_client_protos = static_library(
|
lib_client_protos = static_library(
|
||||||
'client_protos',
|
'client_protos',
|
||||||
client_protos_src + client_protos_headers,
|
client_protos_src + client_protos_headers,
|
||||||
dependencies: [wayland_client]
|
dependencies: [wayland_client, gtkmm],
|
||||||
|
include_directories: include_directories('..'),
|
||||||
) # for the include directory
|
) # for the include directory
|
||||||
|
|
||||||
client_protos = declare_dependency(
|
client_protos = declare_dependency(
|
||||||
|
@ -1,27 +1,34 @@
|
|||||||
{
|
{
|
||||||
// "layer": "top", // Waybar at top layer
|
"layer": "top", // Waybar at top layer
|
||||||
// "position": "bottom", // Waybar at the bottom of your screen
|
// "position": "bottom", // Waybar at the bottom of your screen
|
||||||
// "height": 30, // Waybar height
|
// "height": 30, // Waybar height
|
||||||
// "width": 1280, // Waybar width
|
// "width": 1280, // Waybar width
|
||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"modules-left": ["sway/workspaces", "custom/spotify"],
|
"modules-left": ["sway/workspaces", "custom/spotify"],
|
||||||
"modules-center": ["sway/window"],
|
"modules-center": ["sway/window"],
|
||||||
"modules-right": ["pulseaudio", "network", "cpu", "memory", "battery", "clock"],
|
"modules-right": ["pulseaudio", "network", "cpu", "memory", "battery", "clock", "tray"],
|
||||||
// Modules configuration
|
// Modules configuration
|
||||||
"sway/workspaces": {
|
// "sway/workspaces": {
|
||||||
// "disable-scroll": true,
|
// "disable-scroll": true,
|
||||||
// "all-outputs": true,
|
// "all-outputs": true,
|
||||||
// "format-icons": {
|
// "format": "{name}: {icon}",
|
||||||
// "1": "",
|
// "format-icons": {
|
||||||
// "2": "",
|
// "1": "",
|
||||||
// "3": "",
|
// "2": "",
|
||||||
// "4": "",
|
// "3": "",
|
||||||
// "5": ""
|
// "4": "",
|
||||||
// }
|
// "5": "",
|
||||||
},
|
// "urgent": "",
|
||||||
|
// "focused": "",
|
||||||
|
// "default": ""
|
||||||
|
// }
|
||||||
|
// },
|
||||||
"sway/window": {
|
"sway/window": {
|
||||||
"max-length": 50
|
"max-length": 50
|
||||||
},
|
},
|
||||||
|
"clock": {
|
||||||
|
"format-alt": "{:%Y-%m-%d}"
|
||||||
|
},
|
||||||
"cpu": {
|
"cpu": {
|
||||||
"format": "{}% "
|
"format": "{}% "
|
||||||
},
|
},
|
||||||
@ -40,13 +47,23 @@
|
|||||||
},
|
},
|
||||||
"pulseaudio": {
|
"pulseaudio": {
|
||||||
"format": "{volume}% {icon}",
|
"format": "{volume}% {icon}",
|
||||||
|
"format-bluetooth": "{volume}% {icon}",
|
||||||
"format-muted": "",
|
"format-muted": "",
|
||||||
"format-icons": ["", ""]
|
"format-icons": {
|
||||||
|
"headphones": "",
|
||||||
|
"handsfree": "",
|
||||||
|
"headset": "",
|
||||||
|
"phone": "",
|
||||||
|
"portable": "",
|
||||||
|
"car": "",
|
||||||
|
"default": ["", ""]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"custom/spotify": {
|
"custom/spotify": {
|
||||||
"format": " {}",
|
"format": " {}",
|
||||||
"max-length": 40,
|
"max-length": 40,
|
||||||
"exec": "$HOME/.bin/mediaplayer.sh",
|
"interval": 30, // Remove this if your script is endless and write in loop
|
||||||
|
"exec": "$HOME/.config/waybar/mediaplayer.sh", // Script in resources folder
|
||||||
"exec-if": "pgrep spotify"
|
"exec-if": "pgrep spotify"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
7
resources/mediaplayer.sh
Executable file
7
resources/mediaplayer.sh
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
player_status=$(playerctl status 2> /dev/null)
|
||||||
|
if [ "$player_status" = "Playing" ]; then
|
||||||
|
echo "$(playerctl metadata artist) - $(playerctl metadata title)"
|
||||||
|
elif [ "$player_status" = "Paused" ]; then
|
||||||
|
echo " $(playerctl metadata artist) - $(playerctl metadata title)"
|
||||||
|
fi
|
@ -5,7 +5,7 @@
|
|||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
window#waybar {
|
||||||
background: rgba(43, 48, 59, 0.5);
|
background: rgba(43, 48, 59, 0.5);
|
||||||
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
|
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
|
||||||
color: white;
|
color: white;
|
||||||
@ -18,16 +18,12 @@ window {
|
|||||||
border-bottom: 3px solid transparent;
|
border-bottom: 3px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.icon label {
|
|
||||||
font-size: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.focused {
|
#workspaces button.focused {
|
||||||
background: #64727D;
|
background: #64727D;
|
||||||
border-bottom: 3px solid white;
|
border-bottom: 3px solid white;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify {
|
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
margin: 0 5px;
|
margin: 0 5px;
|
||||||
}
|
}
|
||||||
@ -94,3 +90,7 @@ window {
|
|||||||
background: #66cc99;
|
background: #66cc99;
|
||||||
color: #2a5c45;
|
color: #2a5c45;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#tray {
|
||||||
|
background-color: #2980b9;
|
||||||
|
}
|
||||||
|
@ -1,12 +1,22 @@
|
|||||||
#include "ALabel.hpp"
|
#include "ALabel.hpp"
|
||||||
|
|
||||||
waybar::ALabel::ALabel(Json::Value config)
|
#include <iostream>
|
||||||
: config_(std::move(config))
|
|
||||||
|
waybar::ALabel::ALabel(const Json::Value& config, const std::string format)
|
||||||
|
: config_(config),
|
||||||
|
format_(config_["format"] ? config_["format"].asString() : format),
|
||||||
|
default_format_(format_)
|
||||||
{
|
{
|
||||||
|
event_box_.add(label_);
|
||||||
if (config_["max-length"]) {
|
if (config_["max-length"]) {
|
||||||
label_.set_max_width_chars(config_["max-length"].asUInt());
|
label_.set_max_width_chars(config_["max-length"].asUInt());
|
||||||
label_.set_ellipsize(Pango::EllipsizeMode::ELLIPSIZE_END);
|
label_.set_ellipsize(Pango::EllipsizeMode::ELLIPSIZE_END);
|
||||||
}
|
}
|
||||||
|
if (config_["format-alt"]) {
|
||||||
|
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
|
||||||
|
event_box_.signal_button_press_event()
|
||||||
|
.connect(sigc::mem_fun(*this, &ALabel::handleToggle));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
auto waybar::ALabel::update() -> void
|
auto waybar::ALabel::update() -> void
|
||||||
@ -14,6 +24,39 @@ auto waybar::ALabel::update() -> void
|
|||||||
// Nothing here
|
// Nothing here
|
||||||
}
|
}
|
||||||
|
|
||||||
waybar::ALabel::operator Gtk::Widget &() {
|
bool waybar::ALabel::handleToggle(GdkEventButton* const& /*ev*/)
|
||||||
return label_;
|
{
|
||||||
|
alt = !alt;
|
||||||
|
if (alt) {
|
||||||
|
format_ = config_["format-alt"].asString();
|
||||||
|
} else {
|
||||||
|
format_ = default_format_;
|
||||||
|
}
|
||||||
|
dp.emit();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string waybar::ALabel::getIcon(uint16_t percentage, const std::string& alt)
|
||||||
|
{
|
||||||
|
auto format_icons = config_["format-icons"];
|
||||||
|
if (format_icons.isObject()) {
|
||||||
|
if (!alt.empty() && format_icons[alt]) {
|
||||||
|
format_icons = format_icons[alt];
|
||||||
|
} else {
|
||||||
|
format_icons = format_icons["default"];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (format_icons.isArray()) {
|
||||||
|
auto size = format_icons.size();
|
||||||
|
auto idx = std::clamp(percentage / (100 / size), 0U, size - 1);
|
||||||
|
format_icons = format_icons[idx];
|
||||||
|
}
|
||||||
|
if (format_icons.isString()) {
|
||||||
|
return format_icons.asString();
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
waybar::ALabel::operator Gtk::Widget &() {
|
||||||
|
return event_box_;
|
||||||
}
|
}
|
||||||
|
27
src/bar.cpp
27
src/bar.cpp
@ -3,10 +3,11 @@
|
|||||||
#include "factory.hpp"
|
#include "factory.hpp"
|
||||||
#include "util/json.hpp"
|
#include "util/json.hpp"
|
||||||
|
|
||||||
waybar::Bar::Bar(Client &client,
|
waybar::Bar::Bar(const Client& client,
|
||||||
std::unique_ptr<struct wl_output *> &&p_output, uint32_t p_wl_name)
|
std::unique_ptr<struct wl_output *> &&p_output, uint32_t p_wl_name)
|
||||||
: client(client), window{Gtk::WindowType::WINDOW_TOPLEVEL},
|
: client(client), window{Gtk::WindowType::WINDOW_TOPLEVEL},
|
||||||
output(std::move(p_output)), wl_name(std::move(p_wl_name))
|
surface(nullptr), layer_surface(nullptr),
|
||||||
|
output(std::move(p_output)), wl_name(p_wl_name)
|
||||||
{
|
{
|
||||||
static const struct zxdg_output_v1_listener xdgOutputListener = {
|
static const struct zxdg_output_v1_listener xdgOutputListener = {
|
||||||
.logical_position = handleLogicalPosition,
|
.logical_position = handleLogicalPosition,
|
||||||
@ -20,6 +21,8 @@ waybar::Bar::Bar(Client &client,
|
|||||||
zxdg_output_v1_add_listener(xdg_output_, &xdgOutputListener, this);
|
zxdg_output_v1_add_listener(xdg_output_, &xdgOutputListener, this);
|
||||||
window.set_title("waybar");
|
window.set_title("waybar");
|
||||||
window.set_decorated(false);
|
window.set_decorated(false);
|
||||||
|
window.set_name("waybar");
|
||||||
|
window.set_resizable(false);
|
||||||
setupConfig();
|
setupConfig();
|
||||||
setupCss();
|
setupCss();
|
||||||
setupWidgets();
|
setupWidgets();
|
||||||
@ -135,13 +138,13 @@ auto waybar::Bar::toggle() -> void
|
|||||||
|
|
||||||
auto waybar::Bar::setupConfig() -> void
|
auto waybar::Bar::setupConfig() -> void
|
||||||
{
|
{
|
||||||
util::JsonParser parser;
|
|
||||||
std::ifstream file(client.config_file);
|
std::ifstream file(client.config_file);
|
||||||
if (!file.is_open()) {
|
if (!file.is_open()) {
|
||||||
throw std::runtime_error("Can't open config file");
|
throw std::runtime_error("Can't open config file");
|
||||||
}
|
}
|
||||||
std::string str((std::istreambuf_iterator<char>(file)),
|
std::string str((std::istreambuf_iterator<char>(file)),
|
||||||
std::istreambuf_iterator<char>());
|
std::istreambuf_iterator<char>());
|
||||||
|
util::JsonParser parser;
|
||||||
config_ = parser.parse(str);
|
config_ = parser.parse(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,7 +153,7 @@ auto waybar::Bar::setupCss() -> void
|
|||||||
css_provider_ = Gtk::CssProvider::create();
|
css_provider_ = Gtk::CssProvider::create();
|
||||||
style_context_ = Gtk::StyleContext::create();
|
style_context_ = Gtk::StyleContext::create();
|
||||||
|
|
||||||
// load our css file, wherever that may be hiding
|
// Load our css file, wherever that may be hiding
|
||||||
if (css_provider_->load_from_path(client.css_file)) {
|
if (css_provider_->load_from_path(client.css_file)) {
|
||||||
Glib::RefPtr<Gdk::Screen> screen = window.get_screen();
|
Glib::RefPtr<Gdk::Screen> screen = window.get_screen();
|
||||||
style_context_->add_provider_for_screen(screen, css_provider_,
|
style_context_->add_provider_for_screen(screen, css_provider_,
|
||||||
@ -158,20 +161,22 @@ auto waybar::Bar::setupCss() -> void
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void waybar::Bar::getModules(Factory factory, const std::string& pos)
|
void waybar::Bar::getModules(const Factory& factory, const std::string& pos)
|
||||||
{
|
{
|
||||||
if (config_[pos]) {
|
if (config_[pos]) {
|
||||||
for (const auto &name : config_[pos]) {
|
for (const auto &name : config_[pos]) {
|
||||||
try {
|
try {
|
||||||
|
auto module = factory.makeModule(name.asString());
|
||||||
if (pos == "modules-left") {
|
if (pos == "modules-left") {
|
||||||
modules_left_.emplace_back(factory.makeModule(name.asString()));
|
modules_left_.emplace_back(module);
|
||||||
}
|
}
|
||||||
if (pos == "modules-center") {
|
if (pos == "modules-center") {
|
||||||
modules_center_.emplace_back(factory.makeModule(name.asString()));
|
modules_center_.emplace_back(module);
|
||||||
}
|
}
|
||||||
if (pos == "modules-right") {
|
if (pos == "modules-right") {
|
||||||
modules_right_.emplace_back(factory.makeModule(name.asString()));
|
modules_right_.emplace_back(module);
|
||||||
}
|
}
|
||||||
|
module->dp.connect([module] { module->update(); });
|
||||||
} catch (const std::exception& e) {
|
} catch (const std::exception& e) {
|
||||||
std::cerr << e.what() << std::endl;
|
std::cerr << e.what() << std::endl;
|
||||||
}
|
}
|
||||||
@ -195,14 +200,14 @@ auto waybar::Bar::setupWidgets() -> void
|
|||||||
getModules(factory, "modules-left");
|
getModules(factory, "modules-left");
|
||||||
getModules(factory, "modules-center");
|
getModules(factory, "modules-center");
|
||||||
getModules(factory, "modules-right");
|
getModules(factory, "modules-right");
|
||||||
for (auto& module : modules_left_) {
|
for (auto const& module : modules_left_) {
|
||||||
left.pack_start(*module, false, true, 0);
|
left.pack_start(*module, false, true, 0);
|
||||||
}
|
}
|
||||||
for (auto& module : modules_center_) {
|
for (auto const& module : modules_center_) {
|
||||||
center.pack_start(*module, true, true, 0);
|
center.pack_start(*module, true, true, 0);
|
||||||
}
|
}
|
||||||
std::reverse(modules_right_.begin(), modules_right_.end());
|
std::reverse(modules_right_.begin(), modules_right_.end());
|
||||||
for (auto& module : modules_right_) {
|
for (auto const& module : modules_right_) {
|
||||||
right.pack_end(*module, false, false, 0);
|
right.pack_end(*module, false, false, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,16 @@
|
|||||||
#include "client.hpp"
|
#include "client.hpp"
|
||||||
|
|
||||||
waybar::Client::Client(int argc, char* argv[])
|
waybar::Client::Client(int argc, char* argv[])
|
||||||
: gtk_app(Gtk::Application::create(argc, argv, "org.alexays.waybar")),
|
: gtk_app(Gtk::Application::create(argc, argv, "fr.arouillard.waybar")),
|
||||||
gdk_display(Gdk::Display::get_default()),
|
gdk_display(Gdk::Display::get_default())
|
||||||
wl_display(gdk_wayland_display_get_wl_display(gdk_display->gobj()))
|
|
||||||
{
|
{
|
||||||
|
if (!gdk_display) {
|
||||||
|
throw std::runtime_error("Can't find display");
|
||||||
|
}
|
||||||
|
if (!GDK_IS_WAYLAND_DISPLAY(gdk_display->gobj())) {
|
||||||
|
throw std::runtime_error("Bar need to run under Wayland");
|
||||||
|
}
|
||||||
|
wl_display = gdk_wayland_display_get_wl_display(gdk_display->gobj());
|
||||||
auto getFirstValidPath = [] (std::vector<std::string> possiblePaths) {
|
auto getFirstValidPath = [] (std::vector<std::string> possiblePaths) {
|
||||||
wordexp_t p;
|
wordexp_t p;
|
||||||
|
|
||||||
|
@ -1,38 +1,49 @@
|
|||||||
#include "factory.hpp"
|
#include "factory.hpp"
|
||||||
|
|
||||||
waybar::Factory::Factory(Bar &bar, Json::Value config)
|
waybar::Factory::Factory(Bar& bar, const Json::Value& config)
|
||||||
: _bar(bar), _config(std::move(config))
|
: bar_(bar), config_(config)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
waybar::IModule* waybar::Factory::makeModule(const std::string &name)
|
waybar::IModule* waybar::Factory::makeModule(const std::string &name) const
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
if (name == "battery") {
|
if (name == "battery") {
|
||||||
return new waybar::modules::Battery(_config[name]);
|
return new waybar::modules::Battery(config_[name]);
|
||||||
}
|
}
|
||||||
|
#ifdef HAVE_SWAY
|
||||||
if (name == "sway/workspaces") {
|
if (name == "sway/workspaces") {
|
||||||
return new waybar::modules::sway::Workspaces(_bar, _config[name]);
|
return new waybar::modules::sway::Workspaces(bar_, config_[name]);
|
||||||
}
|
}
|
||||||
if (name == "sway/window") {
|
if (name == "sway/window") {
|
||||||
return new waybar::modules::sway::Window(_bar, _config[name]);
|
return new waybar::modules::sway::Window(bar_, config_[name]);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (name == "memory") {
|
if (name == "memory") {
|
||||||
return new waybar::modules::Memory(_config[name]);
|
return new waybar::modules::Memory(config_[name]);
|
||||||
}
|
}
|
||||||
if (name == "cpu") {
|
if (name == "cpu") {
|
||||||
return new waybar::modules::Cpu(_config[name]);
|
return new waybar::modules::Cpu(config_[name]);
|
||||||
}
|
}
|
||||||
if (name == "clock") {
|
if (name == "clock") {
|
||||||
return new waybar::modules::Clock(_config[name]);
|
return new waybar::modules::Clock(config_[name]);
|
||||||
}
|
}
|
||||||
|
#ifdef HAVE_DBUSMENU
|
||||||
|
if (name == "tray") {
|
||||||
|
return new waybar::modules::SNI::Tray(config_[name]);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBNL
|
||||||
if (name == "network") {
|
if (name == "network") {
|
||||||
return new waybar::modules::Network(_config[name]);
|
return new waybar::modules::Network(config_[name]);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBPULSE
|
||||||
if (name == "pulseaudio") {
|
if (name == "pulseaudio") {
|
||||||
return new waybar::modules::Pulseaudio(_config[name]);
|
return new waybar::modules::Pulseaudio(config_[name]);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (name.compare(0, 7, "custom/") == 0 && name.size() > 7) {
|
if (name.compare(0, 7, "custom/") == 0 && name.size() > 7) {
|
||||||
return new waybar::modules::Custom(name.substr(7), _config[name]);
|
return new waybar::modules::Custom(name.substr(7), config_[name]);
|
||||||
}
|
}
|
||||||
} catch (const std::exception& e) {
|
} catch (const std::exception& e) {
|
||||||
auto err = fmt::format("Disabling module \"{}\", {}", name, e.what());
|
auto err = fmt::format("Disabling module \"{}\", {}", name, e.what());
|
||||||
|
@ -13,7 +13,7 @@ int main(int argc, char* argv[])
|
|||||||
try {
|
try {
|
||||||
waybar::Client c(argc, argv);
|
waybar::Client c(argc, argv);
|
||||||
waybar::client = &c;
|
waybar::client = &c;
|
||||||
std::signal(SIGUSR1, [] (int signal) {
|
std::signal(SIGUSR1, [] (int /*signal*/) {
|
||||||
for (auto& bar : waybar::client->bars) {
|
for (auto& bar : waybar::client->bars) {
|
||||||
(*bar).toggle();
|
(*bar).toggle();
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#include "modules/battery.hpp"
|
#include "modules/battery.hpp"
|
||||||
|
|
||||||
waybar::modules::Battery::Battery(Json::Value config)
|
waybar::modules::Battery::Battery(const Json::Value& config)
|
||||||
: ALabel(std::move(config))
|
: ALabel(config, "{capacity}%")
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
for (auto &node : fs::directory_iterator(data_dir_)) {
|
for (auto const& node : fs::directory_iterator(data_dir_)) {
|
||||||
if (fs::is_directory(node) && fs::exists(node / "capacity")
|
if (fs::is_directory(node) && fs::exists(node / "capacity")
|
||||||
&& fs::exists(node / "status") && fs::exists(node / "uevent")) {
|
&& fs::exists(node / "status") && fs::exists(node / "uevent")) {
|
||||||
batteries_.push_back(node);
|
batteries_.push_back(node);
|
||||||
@ -20,21 +20,11 @@ waybar::modules::Battery::Battery(Json::Value config)
|
|||||||
if (fd_ == -1) {
|
if (fd_ == -1) {
|
||||||
throw std::runtime_error("Unable to listen batteries.");
|
throw std::runtime_error("Unable to listen batteries.");
|
||||||
}
|
}
|
||||||
for (auto &bat : batteries_) {
|
for (auto const& bat : batteries_) {
|
||||||
inotify_add_watch(fd_, (bat / "uevent").c_str(), IN_ACCESS);
|
inotify_add_watch(fd_, (bat / "uevent").c_str(), IN_ACCESS);
|
||||||
}
|
}
|
||||||
// Trigger first values
|
|
||||||
update();
|
|
||||||
label_.set_name("battery");
|
label_.set_name("battery");
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Battery::update));
|
worker();
|
||||||
thread_ = [this] {
|
|
||||||
struct inotify_event event = {0};
|
|
||||||
int nbytes = read(fd_, &event, sizeof(event));
|
|
||||||
if (nbytes != sizeof(event)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
thread_.sig_update.emit();
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
waybar::modules::Battery::~Battery()
|
waybar::modules::Battery::~Battery()
|
||||||
@ -42,12 +32,26 @@ waybar::modules::Battery::~Battery()
|
|||||||
close(fd_);
|
close(fd_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void waybar::modules::Battery::worker()
|
||||||
|
{
|
||||||
|
// Trigger first values
|
||||||
|
update();
|
||||||
|
thread_ = [this] {
|
||||||
|
struct inotify_event event = {0};
|
||||||
|
int nbytes = read(fd_, &event, sizeof(event));
|
||||||
|
if (nbytes != sizeof(event)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
dp.emit();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
auto waybar::modules::Battery::update() -> void
|
auto waybar::modules::Battery::update() -> void
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
uint16_t total = 0;
|
uint16_t total = 0;
|
||||||
std::string status;
|
std::string status;
|
||||||
for (auto &bat : batteries_) {
|
for (auto const& bat : batteries_) {
|
||||||
uint16_t capacity;
|
uint16_t capacity;
|
||||||
std::string _status;
|
std::string _status;
|
||||||
std::ifstream(bat / "capacity") >> capacity;
|
std::ifstream(bat / "capacity") >> capacity;
|
||||||
@ -58,9 +62,7 @@ auto waybar::modules::Battery::update() -> void
|
|||||||
total += capacity;
|
total += capacity;
|
||||||
}
|
}
|
||||||
uint16_t capacity = total / batteries_.size();
|
uint16_t capacity = total / batteries_.size();
|
||||||
auto format = config_["format"]
|
label_.set_text(fmt::format(format_, fmt::arg("capacity", capacity),
|
||||||
? config_["format"].asString() : "{capacity}%";
|
|
||||||
label_.set_text(fmt::format(format, fmt::arg("capacity", capacity),
|
|
||||||
fmt::arg("icon", getIcon(capacity))));
|
fmt::arg("icon", getIcon(capacity))));
|
||||||
label_.set_tooltip_text(status);
|
label_.set_tooltip_text(status);
|
||||||
bool charging = status == "Charging";
|
bool charging = status == "Charging";
|
||||||
@ -79,13 +81,3 @@ auto waybar::modules::Battery::update() -> void
|
|||||||
std::cerr << e.what() << std::endl;
|
std::cerr << e.what() << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string waybar::modules::Battery::getIcon(uint16_t percentage)
|
|
||||||
{
|
|
||||||
if (!config_["format-icons"] || !config_["format-icons"].isArray()) {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
auto size = config_["format-icons"].size();
|
|
||||||
auto idx = std::clamp(percentage / (100 / size), 0U, size - 1);
|
|
||||||
return config_["format-icons"][idx].asString();
|
|
||||||
}
|
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
#include "modules/clock.hpp"
|
#include "modules/clock.hpp"
|
||||||
|
|
||||||
waybar::modules::Clock::Clock(Json::Value config)
|
waybar::modules::Clock::Clock(const Json::Value& config)
|
||||||
: ALabel(std::move(config))
|
: ALabel(config, "{:%H:%M}")
|
||||||
{
|
{
|
||||||
label_.set_name("clock");
|
label_.set_name("clock");
|
||||||
uint32_t interval = config_["interval"] ? config_["inveral"].asUInt() : 60;
|
uint32_t interval = config_["interval"] ? config_["interval"].asUInt() : 60;
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Clock::update));
|
|
||||||
thread_ = [this, interval] {
|
thread_ = [this, interval] {
|
||||||
auto now = waybar::chrono::clock::now();
|
auto now = waybar::chrono::clock::now();
|
||||||
thread_.sig_update.emit();
|
dp.emit();
|
||||||
auto timeout = std::chrono::floor<std::chrono::seconds>(now
|
auto timeout = std::chrono::floor<std::chrono::seconds>(now
|
||||||
+ std::chrono::seconds(interval));
|
+ std::chrono::seconds(interval));
|
||||||
thread_.sleep_until(timeout);
|
thread_.sleep_until(timeout);
|
||||||
@ -18,6 +17,5 @@ waybar::modules::Clock::Clock(Json::Value config)
|
|||||||
auto waybar::modules::Clock::update() -> void
|
auto waybar::modules::Clock::update() -> void
|
||||||
{
|
{
|
||||||
auto localtime = fmt::localtime(std::time(nullptr));
|
auto localtime = fmt::localtime(std::time(nullptr));
|
||||||
auto format = config_["format"] ? config_["format"].asString() : "{:%H:%M}";
|
label_.set_text(fmt::format(format_, localtime));
|
||||||
label_.set_text(fmt::format(format, localtime));
|
|
||||||
}
|
}
|
||||||
|
@ -1,24 +1,22 @@
|
|||||||
#include "modules/cpu.hpp"
|
#include "modules/cpu.hpp"
|
||||||
|
|
||||||
waybar::modules::Cpu::Cpu(Json::Value config)
|
waybar::modules::Cpu::Cpu(const Json::Value& config)
|
||||||
: ALabel(std::move(config))
|
: ALabel(config, "{}%")
|
||||||
{
|
{
|
||||||
label_.set_name("cpu");
|
label_.set_name("cpu");
|
||||||
uint32_t interval = config_["interval"] ? config_["inveral"].asUInt() : 10;
|
uint32_t interval = config_["interval"] ? config_["interval"].asUInt() : 10;
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Cpu::update));
|
|
||||||
thread_ = [this, interval] {
|
thread_ = [this, interval] {
|
||||||
thread_.sig_update.emit();
|
dp.emit();
|
||||||
thread_.sleep_for(chrono::seconds(interval));
|
thread_.sleep_for(chrono::seconds(interval));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
auto waybar::modules::Cpu::update() -> void
|
auto waybar::modules::Cpu::update() -> void
|
||||||
{
|
{
|
||||||
struct sysinfo info = {0};
|
struct sysinfo info = {};
|
||||||
if (sysinfo(&info) == 0) {
|
if (sysinfo(&info) == 0) {
|
||||||
float f_load = 1.f / (1u << SI_LOAD_SHIFT);
|
float f_load = 1.f / (1u << SI_LOAD_SHIFT);
|
||||||
uint16_t load = info.loads[0] * f_load * 100 / get_nprocs();
|
uint16_t load = info.loads[0] * f_load * 100 / get_nprocs();
|
||||||
auto format = config_["format"] ? config_["format"].asString() : "{}%";
|
label_.set_text(fmt::format(format_, load));
|
||||||
label_.set_text(fmt::format(format, load));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,42 +1,80 @@
|
|||||||
#include "modules/custom.hpp"
|
#include "modules/custom.hpp"
|
||||||
|
|
||||||
waybar::modules::Custom::Custom(std::string name, Json::Value config)
|
waybar::modules::Custom::Custom(const std::string name,
|
||||||
: ALabel(std::move(config)), name_(std::move(name))
|
const Json::Value& config)
|
||||||
|
: ALabel(config, "{}"), name_(name)
|
||||||
{
|
{
|
||||||
if (!config_["exec"]) {
|
if (!config_["exec"]) {
|
||||||
throw std::runtime_error(name_ + " has no exec path.");
|
throw std::runtime_error(name_ + " has no exec path.");
|
||||||
}
|
}
|
||||||
uint32_t interval = config_["interval"] ? config_["inveral"].asUInt() : 30;
|
if (config_["interval"]) {
|
||||||
|
delayWorker();
|
||||||
|
} else {
|
||||||
|
continuousWorker();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::Custom::delayWorker()
|
||||||
|
{
|
||||||
|
auto interval = config_["interval"].asUInt();
|
||||||
thread_ = [this, interval] {
|
thread_ = [this, interval] {
|
||||||
bool can_update = true;
|
bool can_update = true;
|
||||||
if (config_["exec-if"]) {
|
if (config_["exec-if"]) {
|
||||||
auto res = waybar::util::command::exec(config_["exec-if"].asString());
|
auto res = waybar::util::command::exec(config_["exec-if"].asString());
|
||||||
if (res.exit_code != 0) {
|
if (res.exit_code != 0) {
|
||||||
can_update = false;
|
can_update = false;
|
||||||
|
label_.hide();
|
||||||
|
label_.set_name("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (can_update) {
|
if (can_update) {
|
||||||
thread_.sig_update.emit();
|
output_ = waybar::util::command::exec(config_["exec"].asString());
|
||||||
|
dp.emit();
|
||||||
}
|
}
|
||||||
thread_.sleep_for(chrono::seconds(interval));
|
thread_.sleep_for(chrono::seconds(interval));
|
||||||
};
|
};
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Custom::update));
|
}
|
||||||
|
|
||||||
|
void waybar::modules::Custom::continuousWorker()
|
||||||
|
{
|
||||||
|
auto cmd = config_["exec"].asString();
|
||||||
|
FILE* fp(popen(cmd.c_str(), "r"));
|
||||||
|
if (!fp) {
|
||||||
|
throw std::runtime_error("Unable to open " + cmd);
|
||||||
|
}
|
||||||
|
thread_ = [this, fp] {
|
||||||
|
char* buff = nullptr;
|
||||||
|
size_t len = 0;
|
||||||
|
if (getline(&buff, &len, fp) == -1) {
|
||||||
|
pclose(fp);
|
||||||
|
thread_.stop();
|
||||||
|
output_ = { 1, "" };
|
||||||
|
dp.emit();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string output = buff;
|
||||||
|
|
||||||
|
// Remove last newline
|
||||||
|
if (!output.empty() && output[output.length()-1] == '\n') {
|
||||||
|
output.erase(output.length()-1);
|
||||||
|
}
|
||||||
|
output_ = { 0, output };
|
||||||
|
dp.emit();
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
auto waybar::modules::Custom::update() -> void
|
auto waybar::modules::Custom::update() -> void
|
||||||
{
|
{
|
||||||
auto res = waybar::util::command::exec(config_["exec"].asString());
|
|
||||||
|
|
||||||
// Hide label if output is empty
|
// Hide label if output is empty
|
||||||
if (res.out.empty() || res.exit_code != 0) {
|
if (output_.out.empty() || output_.exit_code != 0) {
|
||||||
label_.hide();
|
label_.hide();
|
||||||
label_.set_name("");
|
label_.set_name("");
|
||||||
} else {
|
} else {
|
||||||
label_.set_name("custom-" + name_);
|
label_.set_name("custom-" + name_);
|
||||||
auto format = config_["format"] ? config_["format"].asString() : "{}";
|
auto str = fmt::format(format_, output_.out);
|
||||||
auto str = fmt::format(format, res.out);
|
|
||||||
label_.set_text(str);
|
label_.set_text(str);
|
||||||
label_.set_tooltip_text(str);
|
label_.set_tooltip_text(str);
|
||||||
label_.show();
|
label_.show();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,26 +1,24 @@
|
|||||||
#include "modules/memory.hpp"
|
#include "modules/memory.hpp"
|
||||||
|
|
||||||
waybar::modules::Memory::Memory(Json::Value config)
|
waybar::modules::Memory::Memory(const Json::Value& config)
|
||||||
: ALabel(std::move(config))
|
: ALabel(config, "{}%")
|
||||||
{
|
{
|
||||||
label_.set_name("memory");
|
label_.set_name("memory");
|
||||||
uint32_t interval = config_["interval"] ? config_["inveral"].asUInt() : 30;
|
uint32_t interval = config_["interval"] ? config_["interval"].asUInt() : 30;
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Memory::update));
|
|
||||||
thread_ = [this, interval] {
|
thread_ = [this, interval] {
|
||||||
thread_.sig_update.emit();
|
dp.emit();
|
||||||
thread_.sleep_for(chrono::seconds(interval));
|
thread_.sleep_for(chrono::seconds(interval));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
auto waybar::modules::Memory::update() -> void
|
auto waybar::modules::Memory::update() -> void
|
||||||
{
|
{
|
||||||
struct sysinfo info = {0};
|
struct sysinfo info = {};
|
||||||
if (sysinfo(&info) == 0) {
|
if (sysinfo(&info) == 0) {
|
||||||
auto total = info.totalram * info.mem_unit;
|
auto total = info.totalram * info.mem_unit;
|
||||||
auto freeram = info.freeram * info.mem_unit;
|
auto freeram = info.freeram * info.mem_unit;
|
||||||
int used_ram_percentage = 100 * (total - freeram) / total;
|
int used_ram_percentage = 100 * (total - freeram) / total;
|
||||||
auto format = config_["format"] ? config_["format"].asString() : "{}%";
|
label_.set_text(fmt::format(format_, used_ram_percentage));
|
||||||
label_.set_text(fmt::format(format, used_ram_percentage));
|
|
||||||
auto used_ram_gigabytes = (total - freeram) / std::pow(1024, 3);
|
auto used_ram_gigabytes = (total - freeram) / std::pow(1024, 3);
|
||||||
label_.set_tooltip_text(fmt::format("{:.{}f}Gb used", used_ram_gigabytes, 1));
|
label_.set_tooltip_text(fmt::format("{:.{}f}Gb used", used_ram_gigabytes, 1));
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "modules/network.hpp"
|
#include "modules/network.hpp"
|
||||||
|
|
||||||
waybar::modules::Network::Network(Json::Value config)
|
waybar::modules::Network::Network(const Json::Value& config)
|
||||||
: ALabel(std::move(config)), family_(AF_INET),
|
: ALabel(config, "{ifname}"), family_(AF_INET),
|
||||||
signal_strength_dbm_(0), signal_strength_(0)
|
signal_strength_dbm_(0), signal_strength_(0)
|
||||||
{
|
{
|
||||||
sock_fd_ = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
sock_fd_ = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
||||||
@ -28,11 +28,11 @@ waybar::modules::Network::Network(Json::Value config)
|
|||||||
ifname_ = ifname;
|
ifname_ = ifname;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
initNL80211();
|
||||||
label_.set_name("network");
|
label_.set_name("network");
|
||||||
// Trigger first values
|
// Trigger first values
|
||||||
getInfo();
|
getInfo();
|
||||||
update();
|
update();
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Network::update));
|
|
||||||
thread_ = [this] {
|
thread_ = [this] {
|
||||||
char buf[4096];
|
char buf[4096];
|
||||||
uint64_t len = netlinkResponse(sock_fd_, buf, sizeof(buf),
|
uint64_t len = netlinkResponse(sock_fd_, buf, sizeof(buf),
|
||||||
@ -69,7 +69,7 @@ waybar::modules::Network::Network(Json::Value config)
|
|||||||
}
|
}
|
||||||
if (need_update) {
|
if (need_update) {
|
||||||
getInfo();
|
getInfo();
|
||||||
thread_.sig_update.emit();
|
dp.emit();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -77,11 +77,12 @@ waybar::modules::Network::Network(Json::Value config)
|
|||||||
waybar::modules::Network::~Network()
|
waybar::modules::Network::~Network()
|
||||||
{
|
{
|
||||||
close(sock_fd_);
|
close(sock_fd_);
|
||||||
|
nl_socket_free(sk_);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto waybar::modules::Network::update() -> void
|
auto waybar::modules::Network::update() -> void
|
||||||
{
|
{
|
||||||
auto format = config_["format"] ? config_["format"].asString() : "{ifname}";
|
auto format = format_;
|
||||||
if (ifid_ <= 0) {
|
if (ifid_ <= 0) {
|
||||||
format = config_["format-disconnected"]
|
format = config_["format-disconnected"]
|
||||||
? config_["format-disconnected"].asString() : format;
|
? config_["format-disconnected"].asString() : format;
|
||||||
@ -113,23 +114,39 @@ void waybar::modules::Network::disconnected()
|
|||||||
ifid_ = -1;
|
ifid_ = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void waybar::modules::Network::initNL80211()
|
||||||
|
{
|
||||||
|
sk_ = nl_socket_alloc();
|
||||||
|
if (genl_connect(sk_) != 0) {
|
||||||
|
nl_socket_free(sk_);
|
||||||
|
throw std::runtime_error("Can't connect to netlink socket");
|
||||||
|
}
|
||||||
|
if (nl_socket_modify_cb(sk_, NL_CB_VALID, NL_CB_CUSTOM, scanCb, this) < 0) {
|
||||||
|
nl_socket_free(sk_);
|
||||||
|
throw std::runtime_error("Can't connect to netlink socket");
|
||||||
|
}
|
||||||
|
nl80211_id_ = genl_ctrl_resolve(sk_, "nl80211");
|
||||||
|
if (nl80211_id_ < 0) {
|
||||||
|
nl_socket_free(sk_);
|
||||||
|
throw std::runtime_error("Can't resolve nl80211 interface");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Based on https://gist.github.com/Yawning/c70d804d4b8ae78cc698
|
// Based on https://gist.github.com/Yawning/c70d804d4b8ae78cc698
|
||||||
int waybar::modules::Network::getExternalInterface()
|
int waybar::modules::Network::getExternalInterface()
|
||||||
{
|
{
|
||||||
|
static const uint32_t route_buffer_size = 8192;
|
||||||
struct nlmsghdr *hdr = nullptr;
|
struct nlmsghdr *hdr = nullptr;
|
||||||
struct rtmsg *rt = nullptr;
|
struct rtmsg *rt = nullptr;
|
||||||
void *resp = nullptr;
|
char resp[route_buffer_size] = {0};
|
||||||
int ifidx = -1;
|
int ifidx = -1;
|
||||||
|
|
||||||
/* Allocate space for the request. */
|
/* Prepare request. */
|
||||||
uint32_t reqlen = NLMSG_SPACE(sizeof(*rt));
|
constexpr uint32_t reqlen = NLMSG_SPACE(sizeof(*rt));
|
||||||
void *req = nullptr;
|
char req[reqlen] = {0};
|
||||||
if ((req = calloc(1, reqlen)) == nullptr) {
|
|
||||||
goto out; /* ENOBUFS */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Build the RTM_GETROUTE request. */
|
/* Build the RTM_GETROUTE request. */
|
||||||
hdr = static_cast<struct nlmsghdr *>(req);
|
hdr = reinterpret_cast<struct nlmsghdr *>(req);
|
||||||
hdr->nlmsg_len = NLMSG_LENGTH(sizeof(*rt));
|
hdr->nlmsg_len = NLMSG_LENGTH(sizeof(*rt));
|
||||||
hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
|
hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
|
||||||
hdr->nlmsg_type = RTM_GETROUTE;
|
hdr->nlmsg_type = RTM_GETROUTE;
|
||||||
@ -142,25 +159,19 @@ int waybar::modules::Network::getExternalInterface()
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Allocate space for the response. */
|
|
||||||
static const uint32_t route_buffer_size = 8192;
|
|
||||||
if ((resp = calloc(1, route_buffer_size)) == nullptr) {
|
|
||||||
goto out; /* ENOBUFS */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Read the response(s).
|
/* Read the response(s).
|
||||||
*
|
*
|
||||||
* WARNING: All the packets generated by the request must be consumed (as in,
|
* WARNING: All the packets generated by the request must be consumed (as in,
|
||||||
* consume responses till NLMSG_DONE/NLMSG_ERROR is encountered).
|
* consume responses till NLMSG_DONE/NLMSG_ERROR is encountered).
|
||||||
*/
|
*/
|
||||||
do {
|
do {
|
||||||
uint64_t len = netlinkResponse(sock_fd_, resp, route_buffer_size);
|
auto len = netlinkResponse(sock_fd_, resp, route_buffer_size);
|
||||||
if (len < 0) {
|
if (len < 0) {
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Parse the response payload into netlink messages. */
|
/* Parse the response payload into netlink messages. */
|
||||||
for (hdr = static_cast<struct nlmsghdr *>(resp); NLMSG_OK(hdr, len);
|
for (hdr = reinterpret_cast<struct nlmsghdr *>(resp); NLMSG_OK(hdr, len);
|
||||||
hdr = NLMSG_NEXT(hdr, len)) {
|
hdr = NLMSG_NEXT(hdr, len)) {
|
||||||
if (hdr->nlmsg_type == NLMSG_DONE) {
|
if (hdr->nlmsg_type == NLMSG_DONE) {
|
||||||
goto out;
|
goto out;
|
||||||
@ -217,7 +228,7 @@ int waybar::modules::Network::getExternalInterface()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
for (uint32_t i = 0; i < dstlen; i += 1) {
|
for (uint32_t i = 0; i < dstlen; i += 1) {
|
||||||
c |= *(unsigned char *)(RTA_DATA(attr) + i);
|
c |= *((unsigned char *)RTA_DATA(attr) + i);
|
||||||
}
|
}
|
||||||
has_destination = (c == 0);
|
has_destination = (c == 0);
|
||||||
break;
|
break;
|
||||||
@ -241,17 +252,13 @@ int waybar::modules::Network::getExternalInterface()
|
|||||||
} while (true);
|
} while (true);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
if (req != nullptr)
|
|
||||||
free(req);
|
|
||||||
if (resp != nullptr)
|
|
||||||
free(resp);
|
|
||||||
return ifidx;
|
return ifidx;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t waybar::modules::Network::netlinkRequest(int fd, void *req,
|
int waybar::modules::Network::netlinkRequest(int fd, void *req,
|
||||||
uint32_t reqlen, uint32_t groups)
|
uint32_t reqlen, uint32_t groups)
|
||||||
{
|
{
|
||||||
struct sockaddr_nl sa = {0};
|
struct sockaddr_nl sa = {};
|
||||||
sa.nl_family = AF_NETLINK;
|
sa.nl_family = AF_NETLINK;
|
||||||
sa.nl_groups = groups;
|
sa.nl_groups = groups;
|
||||||
struct iovec iov = { req, reqlen };
|
struct iovec iov = { req, reqlen };
|
||||||
@ -259,53 +266,54 @@ uint64_t waybar::modules::Network::netlinkRequest(int fd, void *req,
|
|||||||
return sendmsg(fd, &msg, 0);
|
return sendmsg(fd, &msg, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t waybar::modules::Network::netlinkResponse(int fd, void *resp,
|
int waybar::modules::Network::netlinkResponse(int fd, void *resp,
|
||||||
uint32_t resplen, uint32_t groups)
|
uint32_t resplen, uint32_t groups)
|
||||||
{
|
{
|
||||||
uint64_t ret;
|
int ret;
|
||||||
struct sockaddr_nl sa = {0};
|
struct sockaddr_nl sa = {};
|
||||||
sa.nl_family = AF_NETLINK;
|
sa.nl_family = AF_NETLINK;
|
||||||
sa.nl_groups = groups;
|
sa.nl_groups = groups;
|
||||||
struct iovec iov = { resp, resplen };
|
struct iovec iov = { resp, resplen };
|
||||||
struct msghdr msg = { &sa, sizeof(sa), &iov, 1, nullptr, 0, 0 };
|
struct msghdr msg = { &sa, sizeof(sa), &iov, 1, nullptr, 0, 0 };
|
||||||
ret = recvmsg(fd, &msg, 0);
|
ret = recvmsg(fd, &msg, 0);
|
||||||
if (msg.msg_flags & MSG_TRUNC)
|
if (msg.msg_flags & MSG_TRUNC) {
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int waybar::modules::Network::scanCb(struct nl_msg *msg, void *data) {
|
int waybar::modules::Network::scanCb(struct nl_msg *msg, void *data) {
|
||||||
auto net = static_cast<waybar::modules::Network *>(data);
|
auto net = static_cast<waybar::modules::Network *>(data);
|
||||||
auto gnlh = static_cast<genlmsghdr *>(nlmsg_data(nlmsg_hdr(msg)));
|
auto gnlh = static_cast<genlmsghdr *>(nlmsg_data(nlmsg_hdr(msg)));
|
||||||
struct nlattr* tb[NL80211_ATTR_MAX + 1];
|
struct nlattr* tb[NL80211_ATTR_MAX + 1];
|
||||||
struct nlattr* bss[NL80211_BSS_MAX + 1];
|
struct nlattr* bss[NL80211_BSS_MAX + 1];
|
||||||
struct nla_policy bss_policy[NL80211_BSS_MAX + 1]{};
|
struct nla_policy bss_policy[NL80211_BSS_MAX + 1]{};
|
||||||
bss_policy[NL80211_BSS_TSF].type = NLA_U64;
|
bss_policy[NL80211_BSS_TSF].type = NLA_U64;
|
||||||
bss_policy[NL80211_BSS_FREQUENCY].type = NLA_U32;
|
bss_policy[NL80211_BSS_FREQUENCY].type = NLA_U32;
|
||||||
bss_policy[NL80211_BSS_BSSID].type = NLA_UNSPEC;
|
bss_policy[NL80211_BSS_BSSID].type = NLA_UNSPEC;
|
||||||
bss_policy[NL80211_BSS_BEACON_INTERVAL].type = NLA_U16;
|
bss_policy[NL80211_BSS_BEACON_INTERVAL].type = NLA_U16;
|
||||||
bss_policy[NL80211_BSS_CAPABILITY].type = NLA_U16;
|
bss_policy[NL80211_BSS_CAPABILITY].type = NLA_U16;
|
||||||
bss_policy[NL80211_BSS_INFORMATION_ELEMENTS].type = NLA_UNSPEC;
|
bss_policy[NL80211_BSS_INFORMATION_ELEMENTS].type = NLA_UNSPEC;
|
||||||
bss_policy[NL80211_BSS_SIGNAL_MBM].type = NLA_U32;
|
bss_policy[NL80211_BSS_SIGNAL_MBM].type = NLA_U32;
|
||||||
bss_policy[NL80211_BSS_SIGNAL_UNSPEC].type = NLA_U8;
|
bss_policy[NL80211_BSS_SIGNAL_UNSPEC].type = NLA_U8;
|
||||||
bss_policy[NL80211_BSS_STATUS].type = NLA_U32;
|
bss_policy[NL80211_BSS_STATUS].type = NLA_U32;
|
||||||
|
|
||||||
if (nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0), genlmsg_attrlen(gnlh, 0), nullptr) < 0) {
|
if (nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0), genlmsg_attrlen(gnlh, 0), nullptr) < 0) {
|
||||||
return NL_SKIP;
|
|
||||||
}
|
|
||||||
if (tb[NL80211_ATTR_BSS] == nullptr) {
|
|
||||||
return NL_SKIP;
|
|
||||||
}
|
|
||||||
if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS], bss_policy) != 0) {
|
|
||||||
return NL_SKIP;
|
|
||||||
}
|
|
||||||
if (!net->associatedOrJoined(bss)) {
|
|
||||||
return NL_SKIP;
|
|
||||||
}
|
|
||||||
net->parseEssid(bss);
|
|
||||||
net->parseSignal(bss);
|
|
||||||
// TODO(someone): parse quality
|
|
||||||
return NL_SKIP;
|
return NL_SKIP;
|
||||||
|
}
|
||||||
|
if (tb[NL80211_ATTR_BSS] == nullptr) {
|
||||||
|
return NL_SKIP;
|
||||||
|
}
|
||||||
|
if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS], bss_policy) != 0) {
|
||||||
|
return NL_SKIP;
|
||||||
|
}
|
||||||
|
if (!net->associatedOrJoined(bss)) {
|
||||||
|
return NL_SKIP;
|
||||||
|
}
|
||||||
|
net->parseEssid(bss);
|
||||||
|
net->parseSignal(bss);
|
||||||
|
// TODO(someone): parse quality
|
||||||
|
return NL_SKIP;
|
||||||
}
|
}
|
||||||
|
|
||||||
void waybar::modules::Network::parseEssid(struct nlattr **bss)
|
void waybar::modules::Network::parseEssid(struct nlattr **bss)
|
||||||
@ -329,62 +337,47 @@ void waybar::modules::Network::parseEssid(struct nlattr **bss)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void waybar::modules::Network::parseSignal(struct nlattr **bss) {
|
void waybar::modules::Network::parseSignal(struct nlattr **bss) {
|
||||||
if (bss[NL80211_BSS_SIGNAL_MBM] != nullptr) {
|
if (bss[NL80211_BSS_SIGNAL_MBM] != nullptr) {
|
||||||
// signalstrength in dBm
|
// signalstrength in dBm
|
||||||
signal_strength_dbm_ =
|
signal_strength_dbm_ =
|
||||||
static_cast<int>(nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM])) / 100;
|
static_cast<int>(nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM])) / 100;
|
||||||
|
|
||||||
// WiFi-hardware usually operates in the range -90 to -20dBm.
|
// WiFi-hardware usually operates in the range -90 to -20dBm.
|
||||||
const int hardwareMax = -20;
|
const int hardwareMax = -20;
|
||||||
const int hardwareMin = -90;
|
const int hardwareMin = -90;
|
||||||
signal_strength_ = ((signal_strength_dbm_ - hardwareMin)
|
signal_strength_ = ((signal_strength_dbm_ - hardwareMin)
|
||||||
/ double{hardwareMax - hardwareMin}) * 100;
|
/ double{hardwareMax - hardwareMin}) * 100;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool waybar::modules::Network::associatedOrJoined(struct nlattr** bss)
|
bool waybar::modules::Network::associatedOrJoined(struct nlattr** bss)
|
||||||
{
|
{
|
||||||
if (bss[NL80211_BSS_STATUS] == nullptr) {
|
if (bss[NL80211_BSS_STATUS] == nullptr) {
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
auto status = nla_get_u32(bss[NL80211_BSS_STATUS]);
|
|
||||||
switch (status) {
|
|
||||||
case NL80211_BSS_STATUS_ASSOCIATED:
|
|
||||||
case NL80211_BSS_STATUS_IBSS_JOINED:
|
|
||||||
case NL80211_BSS_STATUS_AUTHENTICATED:
|
|
||||||
return true;
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
auto status = nla_get_u32(bss[NL80211_BSS_STATUS]);
|
||||||
|
switch (status) {
|
||||||
|
case NL80211_BSS_STATUS_ASSOCIATED:
|
||||||
|
case NL80211_BSS_STATUS_IBSS_JOINED:
|
||||||
|
case NL80211_BSS_STATUS_AUTHENTICATED:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
auto waybar::modules::Network::getInfo() -> void
|
auto waybar::modules::Network::getInfo() -> void
|
||||||
{
|
{
|
||||||
struct nl_sock *sk = nl_socket_alloc();
|
struct nl_msg* nl_msg = nlmsg_alloc();
|
||||||
if (genl_connect(sk) != 0) {
|
if (nl_msg == nullptr) {
|
||||||
nl_socket_free(sk);
|
nl_socket_free(sk_);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (nl_socket_modify_cb(sk, NL_CB_VALID, NL_CB_CUSTOM, scanCb, this) < 0) {
|
if (genlmsg_put(nl_msg, NL_AUTO_PORT, NL_AUTO_SEQ, nl80211_id_, 0, NLM_F_DUMP,
|
||||||
nl_socket_free(sk);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const int nl80211_id = genl_ctrl_resolve(sk, "nl80211");
|
|
||||||
if (nl80211_id < 0) {
|
|
||||||
nl_socket_free(sk);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
struct nl_msg *msg = nlmsg_alloc();
|
|
||||||
if (msg == nullptr) {
|
|
||||||
nl_socket_free(sk);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (genlmsg_put(msg, NL_AUTO_PORT, NL_AUTO_SEQ, nl80211_id, 0, NLM_F_DUMP,
|
|
||||||
NL80211_CMD_GET_SCAN, 0) == nullptr
|
NL80211_CMD_GET_SCAN, 0) == nullptr
|
||||||
|| nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifid_) < 0) {
|
|| nla_put_u32(nl_msg, NL80211_ATTR_IFINDEX, ifid_) < 0) {
|
||||||
nlmsg_free(msg);
|
nlmsg_free(nl_msg);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
nl_send_sync(sk, msg);
|
nl_send_sync(sk_, nl_msg);
|
||||||
nl_socket_free(sk);
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "modules/pulseaudio.hpp"
|
#include "modules/pulseaudio.hpp"
|
||||||
|
|
||||||
waybar::modules::Pulseaudio::Pulseaudio(Json::Value config)
|
waybar::modules::Pulseaudio::Pulseaudio(const Json::Value& config)
|
||||||
: ALabel(std::move(config)), mainloop_(nullptr), mainloop_api_(nullptr),
|
: ALabel(config, "{volume}%"), mainloop_(nullptr), mainloop_api_(nullptr),
|
||||||
context_(nullptr), sink_idx_(0), volume_(0), muted_(false)
|
context_(nullptr), sink_idx_(0), volume_(0), muted_(false)
|
||||||
{
|
{
|
||||||
label_.set_name("pulseaudio");
|
label_.set_name("pulseaudio");
|
||||||
@ -89,7 +89,8 @@ void waybar::modules::Pulseaudio::sinkInfoCb(pa_context* /*context*/,
|
|||||||
pa->volume_ = volume * 100.0f;
|
pa->volume_ = volume * 100.0f;
|
||||||
pa->muted_ = i->mute != 0;
|
pa->muted_ = i->mute != 0;
|
||||||
pa->desc_ = i->description;
|
pa->desc_ = i->description;
|
||||||
Glib::signal_idle().connect_once(sigc::mem_fun(*pa, &Pulseaudio::update));
|
pa->port_name_ = i->active_port->name;
|
||||||
|
pa->dp.emit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -100,33 +101,48 @@ void waybar::modules::Pulseaudio::sinkInfoCb(pa_context* /*context*/,
|
|||||||
void waybar::modules::Pulseaudio::serverInfoCb(pa_context *context,
|
void waybar::modules::Pulseaudio::serverInfoCb(pa_context *context,
|
||||||
const pa_server_info *i, void *data)
|
const pa_server_info *i, void *data)
|
||||||
{
|
{
|
||||||
pa_context_get_sink_info_by_name(context, i->default_sink_name,
|
pa_context_get_sink_info_by_name(context, i->default_sink_name,
|
||||||
sinkInfoCb, data);
|
sinkInfoCb, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
const std::string waybar::modules::Pulseaudio::getPortIcon() const
|
||||||
|
{
|
||||||
|
std::vector<std::string> ports = {
|
||||||
|
"headphones",
|
||||||
|
"speaker",
|
||||||
|
"hdmi",
|
||||||
|
"headset",
|
||||||
|
"handsfree",
|
||||||
|
"portable",
|
||||||
|
"car",
|
||||||
|
"hifi",
|
||||||
|
"phone",
|
||||||
|
};
|
||||||
|
for (auto const& port : ports) {
|
||||||
|
if (port_name_.find(port) != std::string::npos) {
|
||||||
|
return port;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
auto waybar::modules::Pulseaudio::update() -> void
|
auto waybar::modules::Pulseaudio::update() -> void
|
||||||
{
|
{
|
||||||
auto format =
|
auto format = format_;
|
||||||
config_["format"] ? config_["format"].asString() : "{volume}%";
|
if (muted_) {
|
||||||
if (muted_) {
|
format =
|
||||||
format =
|
config_["format-muted"] ? config_["format-muted"].asString() : format;
|
||||||
config_["format-muted"] ? config_["format-muted"].asString() : format;
|
label_.get_style_context()->add_class("muted");
|
||||||
label_.get_style_context()->add_class("muted");
|
} else if (port_name_.find("a2dp_sink") != std::string::npos) {
|
||||||
} else {
|
format = config_["format-bluetooth"]
|
||||||
label_.get_style_context()->remove_class("muted");
|
? config_["format-bluetooth"].asString() : format;
|
||||||
}
|
label_.get_style_context()->add_class("bluetooth");
|
||||||
label_.set_label(fmt::format(format,
|
} else {
|
||||||
fmt::arg("volume", volume_),
|
label_.get_style_context()->remove_class("muted");
|
||||||
fmt::arg("icon", getIcon(volume_))));
|
label_.get_style_context()->add_class("bluetooth");
|
||||||
label_.set_tooltip_text(desc_);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string waybar::modules::Pulseaudio::getIcon(uint16_t percentage)
|
|
||||||
{
|
|
||||||
if (!config_["format-icons"] || !config_["format-icons"].isArray()) {
|
|
||||||
return "";
|
|
||||||
}
|
}
|
||||||
auto size = config_["format-icons"].size();
|
label_.set_label(fmt::format(format,
|
||||||
auto idx = std::clamp(percentage / (100 / size), 0U, size - 1);
|
fmt::arg("volume", volume_),
|
||||||
return config_["format-icons"][idx].asString();
|
fmt::arg("icon", getIcon(volume_, getPortIcon()))));
|
||||||
|
label_.set_tooltip_text(desc_);
|
||||||
}
|
}
|
||||||
|
155
src/modules/sni/snh.cpp
Normal file
155
src/modules/sni/snh.cpp
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
#include "modules/sni/snh.hpp"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace waybar::modules::SNI;
|
||||||
|
|
||||||
|
Host::Host(Glib::Dispatcher* dp)
|
||||||
|
: dp_(dp)
|
||||||
|
{
|
||||||
|
GBusNameOwnerFlags flags = static_cast<GBusNameOwnerFlags>(
|
||||||
|
G_BUS_NAME_OWNER_FLAGS_NONE);
|
||||||
|
bus_name_ = "org.kde.StatusNotifierHost-" + std::to_string(getpid());
|
||||||
|
object_path_ = "/StatusNotifierHost";
|
||||||
|
bus_name_id_ = g_bus_own_name(G_BUS_TYPE_SESSION,
|
||||||
|
bus_name_.c_str(), flags,
|
||||||
|
&Host::busAcquired, nullptr, nullptr, this, nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::busAcquired(GDBusConnection* connection,
|
||||||
|
const gchar* name, gpointer data)
|
||||||
|
{
|
||||||
|
auto host = static_cast<SNI::Host *>(data);
|
||||||
|
host->watcher_id_ = g_bus_watch_name(
|
||||||
|
G_BUS_TYPE_SESSION,
|
||||||
|
"org.kde.StatusNotifierWatcher",
|
||||||
|
G_BUS_NAME_WATCHER_FLAGS_NONE,
|
||||||
|
&Host::nameAppeared, &Host::nameVanished, data, nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::nameAppeared(GDBusConnection* connection,
|
||||||
|
const gchar* name, const gchar* name_owner, gpointer data)
|
||||||
|
{
|
||||||
|
auto host = static_cast<SNI::Host *>(data);
|
||||||
|
if (host->cancellable_ != nullptr) {
|
||||||
|
std::cout << "WTF" << std::endl;
|
||||||
|
}
|
||||||
|
host->cancellable_ = g_cancellable_new();
|
||||||
|
sn_org_kde_status_notifier_watcher_proxy_new(
|
||||||
|
connection,
|
||||||
|
G_DBUS_PROXY_FLAGS_NONE,
|
||||||
|
"org.kde.StatusNotifierWatcher",
|
||||||
|
"/StatusNotifierWatcher",
|
||||||
|
host->cancellable_, &Host::proxyReady, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::nameVanished(GDBusConnection* connection,
|
||||||
|
const gchar* name, gpointer data)
|
||||||
|
{
|
||||||
|
auto host = static_cast<SNI::Host *>(data);
|
||||||
|
g_cancellable_cancel(host->cancellable_);
|
||||||
|
g_clear_object(&host->cancellable_);
|
||||||
|
g_clear_object(&host->watcher_);
|
||||||
|
host->items.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::proxyReady(GObject* src, GAsyncResult* res,
|
||||||
|
gpointer data)
|
||||||
|
{
|
||||||
|
GError* error = nullptr;
|
||||||
|
SnOrgKdeStatusNotifierWatcher* watcher =
|
||||||
|
sn_org_kde_status_notifier_watcher_proxy_new_finish(res, &error);
|
||||||
|
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
||||||
|
std::cerr << error->message << std::endl;
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
auto host = static_cast<SNI::Host *>(data);
|
||||||
|
host->watcher_ = watcher;
|
||||||
|
if (error != nullptr) {
|
||||||
|
std::cerr << error->message << std::endl;
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
sn_org_kde_status_notifier_watcher_call_register_status_notifier_host(
|
||||||
|
host->watcher_, host->object_path_.c_str(), host->cancellable_,
|
||||||
|
&Host::registerHost, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::registerHost(GObject* src, GAsyncResult* res,
|
||||||
|
gpointer data)
|
||||||
|
{
|
||||||
|
GError* error = nullptr;
|
||||||
|
sn_org_kde_status_notifier_watcher_call_register_status_notifier_host_finish(
|
||||||
|
SN_ORG_KDE_STATUS_NOTIFIER_WATCHER(src), res, &error);
|
||||||
|
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
||||||
|
std::cerr << error->message << std::endl;
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
auto host = static_cast<SNI::Host *>(data);
|
||||||
|
if (error != nullptr) {
|
||||||
|
std::cerr << error->message << std::endl;
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
g_signal_connect(host->watcher_, "status-notifier-item-registered",
|
||||||
|
G_CALLBACK(&Host::itemRegistered), data);
|
||||||
|
g_signal_connect(host->watcher_, "status-notifier-item-unregistered",
|
||||||
|
G_CALLBACK(&Host::itemUnregistered), data);
|
||||||
|
auto items =
|
||||||
|
sn_org_kde_status_notifier_watcher_dup_registered_status_notifier_items(host->watcher_);
|
||||||
|
if (items) {
|
||||||
|
for (uint32_t i = 0; items[i] != nullptr; i += 1) {
|
||||||
|
host->addRegisteredItem(items[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
g_strfreev(items);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::itemRegistered(
|
||||||
|
SnOrgKdeStatusNotifierWatcher* watcher, const gchar* service, gpointer data)
|
||||||
|
{
|
||||||
|
std::cout << "Item registered" << std::endl;
|
||||||
|
auto host = static_cast<SNI::Host *>(data);
|
||||||
|
host->addRegisteredItem(service);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::itemUnregistered(
|
||||||
|
SnOrgKdeStatusNotifierWatcher* watcher, const gchar* service, gpointer data)
|
||||||
|
{
|
||||||
|
auto host = static_cast<SNI::Host *>(data);
|
||||||
|
auto [bus_name, object_path] = host->getBusNameAndObjectPath(service);
|
||||||
|
for (auto it = host->items.begin(); it != host->items.end(); ++it) {
|
||||||
|
if (it->bus_name == bus_name && it->object_path == object_path) {
|
||||||
|
host->items.erase(it);
|
||||||
|
std::cout << "Item Unregistered" << std::endl;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
host->dp_->emit();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tuple<std::string, std::string> Host::getBusNameAndObjectPath(
|
||||||
|
const gchar* service)
|
||||||
|
{
|
||||||
|
std::string bus_name;
|
||||||
|
std::string object_path;
|
||||||
|
gchar* tmp = g_strstr_len(service, -1, "/");
|
||||||
|
if (tmp != nullptr) {
|
||||||
|
gchar** str = g_strsplit(service, "/", 2);
|
||||||
|
bus_name = str[0];
|
||||||
|
object_path = tmp;
|
||||||
|
g_strfreev(str);
|
||||||
|
} else {
|
||||||
|
bus_name = service;
|
||||||
|
object_path = "/StatusNotifierItem";
|
||||||
|
}
|
||||||
|
return { bus_name, object_path };
|
||||||
|
}
|
||||||
|
|
||||||
|
void Host::addRegisteredItem(const gchar* service)
|
||||||
|
{
|
||||||
|
auto [bus_name, object_path] = getBusNameAndObjectPath(service);
|
||||||
|
items.emplace_back(bus_name, object_path, dp_);
|
||||||
|
}
|
260
src/modules/sni/sni.cpp
Normal file
260
src/modules/sni/sni.cpp
Normal file
@ -0,0 +1,260 @@
|
|||||||
|
#include "modules/sni/sni.hpp"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <libdbusmenu-gtk/dbusmenu-gtk.h>
|
||||||
|
|
||||||
|
waybar::modules::SNI::Item::Item(std::string bn, std::string op,
|
||||||
|
Glib::Dispatcher *dp)
|
||||||
|
: bus_name(bn), object_path(op), event_box(), icon_size(16),
|
||||||
|
effective_icon_size(0), image(Gtk::manage(new Gtk::Image())), dp_(dp) {
|
||||||
|
event_box.add(*image);
|
||||||
|
event_box.add_events(Gdk::BUTTON_PRESS_MASK);
|
||||||
|
event_box.signal_button_press_event().connect(
|
||||||
|
sigc::mem_fun(*this, &Item::handleClick));
|
||||||
|
cancellable_ = g_cancellable_new();
|
||||||
|
sn_org_kde_status_notifier_item_proxy_new_for_bus(
|
||||||
|
G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, bus_name.c_str(),
|
||||||
|
object_path.c_str(), cancellable_, &Item::proxyReady, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::SNI::Item::proxyReady(GObject *obj, GAsyncResult *res,
|
||||||
|
gpointer data) {
|
||||||
|
GError *error = nullptr;
|
||||||
|
SnOrgKdeStatusNotifierItem *proxy =
|
||||||
|
sn_org_kde_status_notifier_item_proxy_new_for_bus_finish(res, &error);
|
||||||
|
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
auto item = static_cast<SNI::Item *>(data);
|
||||||
|
item->proxy_ = proxy;
|
||||||
|
if (error) {
|
||||||
|
std::cerr << error->message << std::endl;
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
auto conn = g_dbus_proxy_get_connection(G_DBUS_PROXY(proxy));
|
||||||
|
|
||||||
|
g_dbus_connection_call(conn, item->bus_name.c_str(),
|
||||||
|
item->object_path.c_str(),
|
||||||
|
"org.freedesktop.DBus.Properties", "GetAll",
|
||||||
|
g_variant_new("(s)", "org.kde.StatusNotifierItem"),
|
||||||
|
G_VARIANT_TYPE("(a{sv})"), G_DBUS_CALL_FLAGS_NONE, -1,
|
||||||
|
item->cancellable_, &Item::getAll, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::SNI::Item::getAll(GObject *obj, GAsyncResult *res,
|
||||||
|
gpointer data) {
|
||||||
|
GError *error = nullptr;
|
||||||
|
auto conn = G_DBUS_CONNECTION(obj);
|
||||||
|
GVariant *properties = g_dbus_connection_call_finish(conn, res, &error);
|
||||||
|
if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
auto item = static_cast<SNI::Item *>(data);
|
||||||
|
if (error) {
|
||||||
|
std::cerr << error->message << std::endl;
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
GVariantIter *it = nullptr;
|
||||||
|
g_variant_get(properties, "(a{sv})", &it);
|
||||||
|
gchar *key;
|
||||||
|
GVariant *value;
|
||||||
|
while (g_variant_iter_next(it, "{sv}", &key, &value)) {
|
||||||
|
if (g_strcmp0(key, "Category") == 0) {
|
||||||
|
item->category = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "Id") == 0) {
|
||||||
|
item->id = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "Title") == 0) {
|
||||||
|
item->title = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "Status") == 0) {
|
||||||
|
item->status = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "WindowId") == 0) {
|
||||||
|
item->window_id = g_variant_get_int32(value);
|
||||||
|
} else if (g_strcmp0(key, "IconName") == 0) {
|
||||||
|
item->icon_name = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "IconPixmap") == 0) {
|
||||||
|
item->icon_pixmap = item->extractPixBuf(value);
|
||||||
|
} else if (g_strcmp0(key, "OverlayIconName") == 0) {
|
||||||
|
item->overlay_icon_name = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "OverlayIconPixmap") == 0) {
|
||||||
|
// TODO: overlay_icon_pixmap
|
||||||
|
} else if (g_strcmp0(key, "AttentionIconName") == 0) {
|
||||||
|
item->attention_icon_name = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "AttentionIconPixmap") == 0) {
|
||||||
|
// TODO: attention_icon_pixmap
|
||||||
|
} else if (g_strcmp0(key, "AttentionMovieName") == 0) {
|
||||||
|
item->attention_movie_name = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "ToolTip") == 0) {
|
||||||
|
// TODO: tooltip
|
||||||
|
} else if (g_strcmp0(key, "IconThemePath") == 0) {
|
||||||
|
item->icon_theme_path = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "Menu") == 0) {
|
||||||
|
item->menu = g_variant_dup_string(value, nullptr);
|
||||||
|
} else if (g_strcmp0(key, "ItemIsMenu") == 0) {
|
||||||
|
item->item_is_menu = g_variant_get_boolean(value);
|
||||||
|
}
|
||||||
|
g_variant_unref(value);
|
||||||
|
g_free(key);
|
||||||
|
}
|
||||||
|
g_variant_iter_free(it);
|
||||||
|
g_variant_unref(properties);
|
||||||
|
if (item->id.empty() || item->category.empty() || item->status.empty()) {
|
||||||
|
std::cerr << "Invalid Status Notifier Item: " + item->bus_name + "," +
|
||||||
|
item->object_path
|
||||||
|
<< std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!item->icon_theme_path.empty()) {
|
||||||
|
GtkIconTheme *icon_theme = gtk_icon_theme_get_default();
|
||||||
|
gtk_icon_theme_append_search_path(icon_theme,
|
||||||
|
item->icon_theme_path.c_str());
|
||||||
|
}
|
||||||
|
item->updateImage();
|
||||||
|
item->dp_->emit();
|
||||||
|
// TODO: handle change
|
||||||
|
}
|
||||||
|
|
||||||
|
Glib::RefPtr<Gdk::Pixbuf>
|
||||||
|
waybar::modules::SNI::Item::extractPixBuf(GVariant *variant) {
|
||||||
|
GVariantIter *it;
|
||||||
|
g_variant_get(variant, "a(iiay)", &it);
|
||||||
|
if (it == nullptr) {
|
||||||
|
return Glib::RefPtr<Gdk::Pixbuf>{};
|
||||||
|
}
|
||||||
|
GVariant *val;
|
||||||
|
gint lwidth = 0;
|
||||||
|
gint lheight = 0;
|
||||||
|
gint width;
|
||||||
|
gint height;
|
||||||
|
guchar *array = nullptr;
|
||||||
|
while (g_variant_iter_loop(it, "(ii@ay)", &width, &height, &val)) {
|
||||||
|
if (width > 0 && height > 0 && val != nullptr &&
|
||||||
|
width * height > lwidth * lheight) {
|
||||||
|
auto size = g_variant_get_size(val);
|
||||||
|
/* Sanity check */
|
||||||
|
if (size == 4U * width * height) {
|
||||||
|
/* Find the largest image */
|
||||||
|
gconstpointer data = g_variant_get_data(val);
|
||||||
|
if (data != nullptr) {
|
||||||
|
if (array != nullptr) {
|
||||||
|
g_free(array);
|
||||||
|
}
|
||||||
|
array = static_cast<guchar *>(g_memdup(data, size));
|
||||||
|
lwidth = width;
|
||||||
|
lheight = height;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
g_variant_iter_free(it);
|
||||||
|
if (array != nullptr) {
|
||||||
|
/* argb to rgba */
|
||||||
|
for (uint32_t i = 0; i < 4U * lwidth * lheight; i += 4) {
|
||||||
|
guchar alpha = array[i];
|
||||||
|
array[i] = array[i + 1];
|
||||||
|
array[i + 1] = array[i + 2];
|
||||||
|
array[i + 2] = array[i + 3];
|
||||||
|
array[i + 3] = alpha;
|
||||||
|
}
|
||||||
|
return Gdk::Pixbuf::create_from_data(array, Gdk::Colorspace::COLORSPACE_RGB,
|
||||||
|
true, 8, lwidth, lheight, 4 * lwidth);
|
||||||
|
}
|
||||||
|
return Glib::RefPtr<Gdk::Pixbuf>{};
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::SNI::Item::updateImage()
|
||||||
|
{
|
||||||
|
if (!icon_name.empty()) {
|
||||||
|
auto pixbuf = getIconByName(icon_name, icon_size);
|
||||||
|
if (pixbuf->gobj() == nullptr) {
|
||||||
|
// Try to find icons specified by path and filename
|
||||||
|
try {
|
||||||
|
pixbuf = Gdk::Pixbuf::create_from_file(icon_name);
|
||||||
|
if (pixbuf->gobj() != nullptr) {
|
||||||
|
// An icon specified by path and filename may be the wrong size for
|
||||||
|
// the tray
|
||||||
|
pixbuf->scale_simple(icon_size - 2, icon_size - 2,
|
||||||
|
Gdk::InterpType::INTERP_BILINEAR);
|
||||||
|
}
|
||||||
|
} catch (Glib::Error &e) {
|
||||||
|
std::cerr << "Exception: " << e.what() << std::endl;
|
||||||
|
pixbuf = getIconByName("image-missing", icon_size);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (pixbuf->gobj() == nullptr) {
|
||||||
|
pixbuf = getIconByName("image-missing", icon_size);
|
||||||
|
}
|
||||||
|
image->set(pixbuf);
|
||||||
|
} else if (icon_pixmap) {
|
||||||
|
image->set(icon_pixmap);
|
||||||
|
} else {
|
||||||
|
image->set_from_icon_name("image-missing", Gtk::ICON_SIZE_MENU);
|
||||||
|
image->set_pixel_size(icon_size);
|
||||||
|
}
|
||||||
|
if (!menu.empty()) {
|
||||||
|
auto *dbmenu = dbusmenu_gtkmenu_new(bus_name.data(), menu.data());
|
||||||
|
if (dbmenu)
|
||||||
|
gtk_menu = Glib::wrap(GTK_MENU(dbmenu), false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Glib::RefPtr<Gdk::Pixbuf>
|
||||||
|
waybar::modules::SNI::Item::getIconByName(std::string name, int request_size) {
|
||||||
|
int icon_size = 0;
|
||||||
|
Glib::RefPtr<Gtk::IconTheme> icon_theme = Gtk::IconTheme::get_default();
|
||||||
|
icon_theme->rescan_if_needed();
|
||||||
|
auto sizes = icon_theme->get_icon_sizes(name.c_str());
|
||||||
|
|
||||||
|
for (auto const &size : sizes) {
|
||||||
|
// -1 == scalable
|
||||||
|
if (size == request_size || size == -1) {
|
||||||
|
icon_size = request_size;
|
||||||
|
break;
|
||||||
|
} else if (size < request_size || size > icon_size) {
|
||||||
|
icon_size = size;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (icon_size == 0) {
|
||||||
|
icon_size = request_size;
|
||||||
|
}
|
||||||
|
return icon_theme->load_icon(name.c_str(), icon_size,
|
||||||
|
Gtk::IconLookupFlags::ICON_LOOKUP_FORCE_SIZE);
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::SNI::Item::handleActivate(GObject *src, GAsyncResult *res,
|
||||||
|
gpointer data) {
|
||||||
|
auto item = static_cast<SNI::Item *>(data);
|
||||||
|
sn_org_kde_status_notifier_item_call_activate_finish(item->proxy_, res,
|
||||||
|
nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::SNI::Item::handleSecondaryActivate(GObject *src,
|
||||||
|
GAsyncResult *res,
|
||||||
|
gpointer data) {
|
||||||
|
auto item = static_cast<SNI::Item *>(data);
|
||||||
|
sn_org_kde_status_notifier_item_call_secondary_activate_finish(item->proxy_,
|
||||||
|
res, nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool waybar::modules::SNI::Item::handleClick(GdkEventButton *const &ev) {
|
||||||
|
if (ev->type == GDK_BUTTON_PRESS) {
|
||||||
|
if (gtk_menu) {
|
||||||
|
if (!gtk_menu->get_attach_widget()) {
|
||||||
|
gtk_menu->attach_to_widget(event_box);
|
||||||
|
}
|
||||||
|
gtk_menu->popup(ev->button, ev->time);
|
||||||
|
} else {
|
||||||
|
sn_org_kde_status_notifier_item_call_activate(
|
||||||
|
proxy_, ev->x, ev->y, nullptr, &Item::handleActivate, this);
|
||||||
|
}
|
||||||
|
} else if (ev->type == GDK_2BUTTON_PRESS) {
|
||||||
|
sn_org_kde_status_notifier_item_call_secondary_activate(
|
||||||
|
proxy_, ev->x, ev->y, nullptr, &Item::handleSecondaryActivate, this);
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
183
src/modules/sni/snw.cpp
Normal file
183
src/modules/sni/snw.cpp
Normal file
@ -0,0 +1,183 @@
|
|||||||
|
#include "modules/sni/snw.hpp"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace waybar::modules::SNI;
|
||||||
|
|
||||||
|
Watcher::Watcher()
|
||||||
|
{
|
||||||
|
GBusNameOwnerFlags flags = static_cast<GBusNameOwnerFlags>(
|
||||||
|
G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT
|
||||||
|
| G_BUS_NAME_OWNER_FLAGS_REPLACE);
|
||||||
|
bus_name_id_ = g_bus_own_name(G_BUS_TYPE_SESSION,
|
||||||
|
"org.kde.StatusNotifierWatcher", flags,
|
||||||
|
&Watcher::busAcquired, nullptr, nullptr, this, nullptr);
|
||||||
|
watcher_ = sn_org_kde_status_notifier_watcher_skeleton_new();
|
||||||
|
}
|
||||||
|
|
||||||
|
Watcher::~Watcher()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void Watcher::busAcquired(GDBusConnection* connection, const gchar* name,
|
||||||
|
gpointer data)
|
||||||
|
{
|
||||||
|
GError* error = nullptr;
|
||||||
|
auto host = static_cast<SNI::Watcher*>(data);
|
||||||
|
g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(host->watcher_),
|
||||||
|
connection, "/StatusNotifierWatcher", &error);
|
||||||
|
if (error != nullptr) {
|
||||||
|
std::cerr << error->message << std::endl;
|
||||||
|
g_error_free(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
g_signal_connect_swapped(host->watcher_,
|
||||||
|
"handle-register-status-notifier-item",
|
||||||
|
G_CALLBACK(&Watcher::handleRegisterItem), data);
|
||||||
|
g_signal_connect_swapped(host->watcher_,
|
||||||
|
"handle-register-status-notifier-host",
|
||||||
|
G_CALLBACK(&Watcher::handleRegisterHost), data);
|
||||||
|
sn_org_kde_status_notifier_watcher_set_protocol_version(host->watcher_, 0);
|
||||||
|
sn_org_kde_status_notifier_watcher_set_is_status_notifier_host_registered(
|
||||||
|
host->watcher_, TRUE);
|
||||||
|
std::cout << "Bus aquired" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
gboolean Watcher::handleRegisterHost(Watcher* obj,
|
||||||
|
GDBusMethodInvocation* invocation, const gchar* service)
|
||||||
|
{
|
||||||
|
const gchar* bus_name = service;
|
||||||
|
const gchar* object_path = "/StatusNotifierHost";
|
||||||
|
|
||||||
|
if (*service == '/') {
|
||||||
|
bus_name = g_dbus_method_invocation_get_sender(invocation);
|
||||||
|
object_path = service;
|
||||||
|
}
|
||||||
|
if (g_dbus_is_name(bus_name) == FALSE) {
|
||||||
|
g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR,
|
||||||
|
G_DBUS_ERROR_INVALID_ARGS, "D-Bus bus name '%s' is not valid", bus_name);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
auto watch = gfWatchFind(obj->hosts_, bus_name, object_path);
|
||||||
|
if (watch != nullptr) {
|
||||||
|
g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR,
|
||||||
|
G_DBUS_ERROR_INVALID_ARGS, "Status Notifier Host with bus name '%s' and object path '%s' is already registered",
|
||||||
|
bus_name, object_path);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
watch = gfWatchNew(GF_WATCH_TYPE_HOST, service, bus_name, object_path, obj);
|
||||||
|
obj->hosts_ = g_slist_prepend(obj->hosts_, watch);
|
||||||
|
sn_org_kde_status_notifier_watcher_set_is_status_notifier_host_registered(
|
||||||
|
obj->watcher_, TRUE);
|
||||||
|
if (g_slist_length(obj->hosts_)) {
|
||||||
|
sn_org_kde_status_notifier_watcher_emit_status_notifier_host_registered(
|
||||||
|
obj->watcher_);
|
||||||
|
}
|
||||||
|
sn_org_kde_status_notifier_watcher_complete_register_status_notifier_host(
|
||||||
|
obj->watcher_, invocation);
|
||||||
|
std::cout << "Host registered: " << bus_name << std::endl;
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
gboolean Watcher::handleRegisterItem(Watcher* obj,
|
||||||
|
GDBusMethodInvocation* invocation, const gchar* service)
|
||||||
|
{
|
||||||
|
const gchar* bus_name = service;
|
||||||
|
const gchar* object_path = "/StatusNotifierItem";
|
||||||
|
|
||||||
|
if (*service == '/') {
|
||||||
|
bus_name = g_dbus_method_invocation_get_sender(invocation);
|
||||||
|
object_path = service;
|
||||||
|
}
|
||||||
|
if (g_dbus_is_name(bus_name) == FALSE) {
|
||||||
|
g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR,
|
||||||
|
G_DBUS_ERROR_INVALID_ARGS, "D-Bus bus name '%s' is not valid", bus_name);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
auto watch = gfWatchFind(obj->items_, bus_name, object_path);
|
||||||
|
if (watch != nullptr) {
|
||||||
|
g_warning("Status Notifier Item with bus name '%s' and object path '%s' is already registered",
|
||||||
|
bus_name, object_path);
|
||||||
|
sn_org_kde_status_notifier_watcher_complete_register_status_notifier_item(
|
||||||
|
obj->watcher_, invocation);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
watch = gfWatchNew(GF_WATCH_TYPE_ITEM, service, bus_name, object_path, obj);
|
||||||
|
obj->items_ = g_slist_prepend(obj->items_, watch);
|
||||||
|
obj->updateRegisteredItems(obj->watcher_);
|
||||||
|
gchar* tmp = g_strdup_printf("%s%s", bus_name, object_path);
|
||||||
|
sn_org_kde_status_notifier_watcher_emit_status_notifier_item_registered(
|
||||||
|
obj->watcher_, tmp);
|
||||||
|
g_free(tmp);
|
||||||
|
sn_org_kde_status_notifier_watcher_complete_register_status_notifier_item(
|
||||||
|
obj->watcher_, invocation);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
Watcher::GfWatch* Watcher::gfWatchFind(GSList* list, const gchar* bus_name,
|
||||||
|
const gchar* object_path)
|
||||||
|
{
|
||||||
|
for (GSList* l = list; l != nullptr; l = g_slist_next (l)) {
|
||||||
|
GfWatch* watch = static_cast<GfWatch*>(l->data);
|
||||||
|
if (g_strcmp0 (watch->bus_name, bus_name) == 0
|
||||||
|
&& g_strcmp0 (watch->object_path, object_path) == 0) {
|
||||||
|
return watch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
Watcher::GfWatch* Watcher::gfWatchNew(GfWatchType type, const gchar* service,
|
||||||
|
const gchar* bus_name, const gchar* object_path, Watcher* watcher)
|
||||||
|
{
|
||||||
|
GfWatch* watch = g_new0(GfWatch, 1);
|
||||||
|
watch->type = type;
|
||||||
|
watch->watcher = watcher;
|
||||||
|
watch->service = g_strdup(service);
|
||||||
|
watch->bus_name = g_strdup(bus_name);
|
||||||
|
watch->object_path = g_strdup(object_path);
|
||||||
|
watch->watch_id = g_bus_watch_name(G_BUS_TYPE_SESSION, bus_name,
|
||||||
|
G_BUS_NAME_WATCHER_FLAGS_NONE, nullptr, &Watcher::nameVanished, watch,
|
||||||
|
nullptr);
|
||||||
|
return watch;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Watcher::nameVanished(GDBusConnection* connection, const char* name,
|
||||||
|
gpointer data)
|
||||||
|
{
|
||||||
|
auto watch = static_cast<GfWatch *>(data);
|
||||||
|
if (watch->type == GF_WATCH_TYPE_HOST) {
|
||||||
|
watch->watcher->hosts_ = g_slist_remove(watch->watcher->hosts_, watch);
|
||||||
|
if (watch->watcher->hosts_ == nullptr) {
|
||||||
|
sn_org_kde_status_notifier_watcher_set_is_status_notifier_host_registered(
|
||||||
|
watch->watcher->watcher_, FALSE);
|
||||||
|
sn_org_kde_status_notifier_watcher_emit_status_notifier_host_registered(
|
||||||
|
watch->watcher->watcher_);
|
||||||
|
}
|
||||||
|
} else if (watch->type == GF_WATCH_TYPE_ITEM) {
|
||||||
|
watch->watcher->items_ = g_slist_remove(watch->watcher->items_, watch);
|
||||||
|
watch->watcher->updateRegisteredItems(watch->watcher->watcher_);
|
||||||
|
gchar* tmp = g_strdup_printf("%s%s", watch->bus_name, watch->object_path);
|
||||||
|
sn_org_kde_status_notifier_watcher_emit_status_notifier_item_unregistered(
|
||||||
|
watch->watcher->watcher_, tmp);
|
||||||
|
g_free(tmp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Watcher::updateRegisteredItems(SnOrgKdeStatusNotifierWatcher* obj)
|
||||||
|
{
|
||||||
|
GVariantBuilder builder;
|
||||||
|
g_variant_builder_init(&builder, G_VARIANT_TYPE("as"));
|
||||||
|
for (GSList* l = items_; l != nullptr; l = g_slist_next(l)) {
|
||||||
|
GfWatch* watch = static_cast<GfWatch*>(l->data);
|
||||||
|
gchar* item = g_strdup_printf("%s%s", watch->bus_name, watch->object_path);
|
||||||
|
g_variant_builder_add(&builder, "s", item);
|
||||||
|
g_free(item);
|
||||||
|
}
|
||||||
|
GVariant* variant = g_variant_builder_end(&builder);
|
||||||
|
const gchar** items = g_variant_get_strv(variant, nullptr);
|
||||||
|
sn_org_kde_status_notifier_watcher_set_registered_status_notifier_items(
|
||||||
|
obj, items);
|
||||||
|
g_variant_unref(variant);
|
||||||
|
g_free(items);
|
||||||
|
}
|
21
src/modules/sni/tray.cpp
Normal file
21
src/modules/sni/tray.cpp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#include "modules/sni/tray.hpp"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
waybar::modules::SNI::Tray::Tray(const Json::Value &config)
|
||||||
|
: config_(config), watcher_(), host_(&dp) {}
|
||||||
|
|
||||||
|
auto waybar::modules::SNI::Tray::update() -> void {
|
||||||
|
for (auto &item : host_.items) {
|
||||||
|
item.event_box.set_tooltip_text(item.title);
|
||||||
|
box_.pack_start(item.event_box);
|
||||||
|
}
|
||||||
|
if (box_.get_children().size() > 0) {
|
||||||
|
box_.set_name("tray");
|
||||||
|
box_.show_all();
|
||||||
|
} else {
|
||||||
|
box_.set_name("");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
waybar::modules::SNI::Tray::operator Gtk::Widget &() { return box_; }
|
@ -1,14 +1,17 @@
|
|||||||
#define _POSIX_C_SOURCE 200809L
|
|
||||||
#include "modules/sway/ipc/client.hpp"
|
#include "modules/sway/ipc/client.hpp"
|
||||||
#include <cstdio>
|
|
||||||
#include <string>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
#include <sys/un.h>
|
|
||||||
|
|
||||||
static const std::string ipc_magic("i3-ipc");
|
waybar::modules::sway::Ipc::Ipc()
|
||||||
static const size_t ipc_header_size = ipc_magic.size() + 8;
|
: fd_(-1), fd_event_(-1)
|
||||||
|
{}
|
||||||
|
|
||||||
std::string getSocketPath() {
|
waybar::modules::sway::Ipc::~Ipc()
|
||||||
|
{
|
||||||
|
close(fd_);
|
||||||
|
close(fd_event_);
|
||||||
|
}
|
||||||
|
|
||||||
|
const std::string waybar::modules::sway::Ipc::getSocketPath() const
|
||||||
|
{
|
||||||
const char *env = getenv("SWAYSOCK");
|
const char *env = getenv("SWAYSOCK");
|
||||||
if (env != nullptr) {
|
if (env != nullptr) {
|
||||||
return std::string(env);
|
return std::string(env);
|
||||||
@ -33,31 +36,41 @@ std::string getSocketPath() {
|
|||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ipcOpenSocket(const std::string &socketPath) {
|
int waybar::modules::sway::Ipc::open(const std::string& socketPath) const
|
||||||
|
{
|
||||||
struct sockaddr_un addr = {0};
|
struct sockaddr_un addr = {0};
|
||||||
int socketfd;
|
int fd = -1;
|
||||||
if ((socketfd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
|
if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
|
||||||
throw std::runtime_error("Unable to open Unix socket");
|
throw std::runtime_error("Unable to open Unix socket");
|
||||||
}
|
}
|
||||||
addr.sun_family = AF_UNIX;
|
addr.sun_family = AF_UNIX;
|
||||||
strncpy(addr.sun_path, socketPath.c_str(), sizeof(addr.sun_path) - 1);
|
strncpy(addr.sun_path, socketPath.c_str(), sizeof(addr.sun_path) - 1);
|
||||||
addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
|
addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
|
||||||
int l = sizeof(struct sockaddr_un);
|
int l = sizeof(struct sockaddr_un);
|
||||||
if (connect(socketfd, reinterpret_cast<struct sockaddr *>(&addr), l) == -1) {
|
if (::connect(fd, reinterpret_cast<struct sockaddr *>(&addr), l) == -1) {
|
||||||
throw std::runtime_error("Unable to connect to " + socketPath);
|
throw std::runtime_error("Unable to connect to Sway");
|
||||||
}
|
}
|
||||||
return socketfd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ipc_response ipcRecvResponse(int socketfd) {
|
void waybar::modules::sway::Ipc::connect()
|
||||||
|
{
|
||||||
|
const std::string& socketPath = getSocketPath();
|
||||||
|
fd_ = open(socketPath);
|
||||||
|
fd_event_ = open(socketPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct waybar::modules::sway::Ipc::ipc_response
|
||||||
|
waybar::modules::sway::Ipc::recv(int fd) const
|
||||||
|
{
|
||||||
std::string header;
|
std::string header;
|
||||||
header.reserve(ipc_header_size);
|
header.reserve(ipc_header_size_);
|
||||||
auto data32 = reinterpret_cast<uint32_t *>(header.data() + ipc_magic.size());
|
auto data32 = reinterpret_cast<uint32_t *>(header.data() + ipc_magic_.size());
|
||||||
size_t total = 0;
|
size_t total = 0;
|
||||||
|
|
||||||
while (total < ipc_header_size) {
|
while (total < ipc_header_size_) {
|
||||||
ssize_t res =
|
ssize_t res =
|
||||||
::recv(socketfd, header.data() + total, ipc_header_size - total, 0);
|
::recv(fd, header.data() + total, ipc_header_size_ - total, 0);
|
||||||
if (res <= 0) {
|
if (res <= 0) {
|
||||||
throw std::runtime_error("Unable to receive IPC response");
|
throw std::runtime_error("Unable to receive IPC response");
|
||||||
}
|
}
|
||||||
@ -66,32 +79,56 @@ struct ipc_response ipcRecvResponse(int socketfd) {
|
|||||||
|
|
||||||
total = 0;
|
total = 0;
|
||||||
std::string payload;
|
std::string payload;
|
||||||
payload.reserve(data32[0]);
|
payload.reserve(data32[0] + 1);
|
||||||
while (total < data32[0]) {
|
while (total < data32[0]) {
|
||||||
ssize_t res =
|
ssize_t res =
|
||||||
::recv(socketfd, payload.data() + total, data32[0] - total, 0);
|
::recv(fd, payload.data() + total, data32[0] - total, 0);
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
throw std::runtime_error("Unable to receive IPC response");
|
throw std::runtime_error("Unable to receive IPC response");
|
||||||
}
|
}
|
||||||
total += res;
|
total += res;
|
||||||
}
|
}
|
||||||
|
payload[data32[0]] = 0;
|
||||||
return { data32[0], data32[1], &payload.front() };
|
return { data32[0], data32[1], &payload.front() };
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ipc_response ipcSingleCommand(int socketfd, uint32_t type,
|
struct waybar::modules::sway::Ipc::ipc_response
|
||||||
const std::string& payload) {
|
waybar::modules::sway::Ipc::send(int fd, uint32_t type,
|
||||||
|
const std::string& payload) const
|
||||||
|
{
|
||||||
std::string header;
|
std::string header;
|
||||||
header.reserve(ipc_header_size);
|
header.reserve(ipc_header_size_);
|
||||||
auto data32 = reinterpret_cast<uint32_t *>(header.data() + ipc_magic.size());
|
auto data32 = reinterpret_cast<uint32_t *>(header.data() + ipc_magic_.size());
|
||||||
memcpy(header.data(), ipc_magic.c_str(), ipc_magic.size());
|
memcpy(header.data(), ipc_magic_.c_str(), ipc_magic_.size());
|
||||||
data32[0] = payload.size();
|
data32[0] = payload.size();
|
||||||
data32[1] = type;
|
data32[1] = type;
|
||||||
|
|
||||||
if (send(socketfd, header.data(), ipc_header_size, 0) == -1) {
|
if (::send(fd, header.data(), ipc_header_size_, 0) == -1) {
|
||||||
throw std::runtime_error("Unable to send IPC header");
|
throw std::runtime_error("Unable to send IPC header");
|
||||||
}
|
}
|
||||||
if (send(socketfd, payload.c_str(), payload.size(), 0) == -1) {
|
if (::send(fd, payload.c_str(), payload.size(), 0) == -1) {
|
||||||
throw std::runtime_error("Unable to send IPC payload");
|
throw std::runtime_error("Unable to send IPC payload");
|
||||||
}
|
}
|
||||||
return ipcRecvResponse(socketfd);
|
return recv(fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct waybar::modules::sway::Ipc::ipc_response
|
||||||
|
waybar::modules::sway::Ipc::sendCmd(uint32_t type,
|
||||||
|
const std::string& payload) const
|
||||||
|
{
|
||||||
|
return send(fd_, type, payload);
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::sway::Ipc::subscribe(const std::string& payload) const
|
||||||
|
{
|
||||||
|
auto res = send(fd_event_, IPC_SUBSCRIBE, payload);
|
||||||
|
if (res.payload != "{\"success\": true}") {
|
||||||
|
throw std::runtime_error("Unable to subscribe ipc event");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct waybar::modules::sway::Ipc::ipc_response
|
||||||
|
waybar::modules::sway::Ipc::handleEvent() const
|
||||||
|
{
|
||||||
|
return recv(fd_event_);
|
||||||
|
}
|
@ -1,24 +1,33 @@
|
|||||||
#include "modules/sway/window.hpp"
|
#include "modules/sway/window.hpp"
|
||||||
#include "modules/sway/ipc/client.hpp"
|
|
||||||
|
|
||||||
waybar::modules::sway::Window::Window(Bar &bar, Json::Value config)
|
waybar::modules::sway::Window::Window(Bar &bar, const Json::Value& config)
|
||||||
: ALabel(std::move(config)), bar_(bar)
|
: ALabel(config, "{}"), bar_(bar), windowId_(-1)
|
||||||
{
|
{
|
||||||
label_.set_name("window");
|
label_.set_name("window");
|
||||||
std::string socketPath = getSocketPath();
|
ipc_.connect();
|
||||||
ipcfd_ = ipcOpenSocket(socketPath);
|
ipc_.subscribe("[ \"window\" ]");
|
||||||
ipc_eventfd_ = ipcOpenSocket(socketPath);
|
|
||||||
ipcSingleCommand(ipc_eventfd_, IPC_SUBSCRIBE, "[ \"window\" ]");
|
|
||||||
getFocusedWindow();
|
getFocusedWindow();
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Window::update));
|
// Launch worker
|
||||||
|
worker();
|
||||||
|
}
|
||||||
|
|
||||||
|
void waybar::modules::sway::Window::worker()
|
||||||
|
{
|
||||||
thread_ = [this] {
|
thread_ = [this] {
|
||||||
try {
|
try {
|
||||||
auto res = ipcRecvResponse(ipc_eventfd_);
|
auto res = ipc_.handleEvent();
|
||||||
auto parsed = parser_.parse(res.payload);
|
auto parsed = parser_.parse(res.payload);
|
||||||
if ((parsed["change"] == "focus" || parsed["change"] == "title")
|
if ((parsed["change"] == "focus" || parsed["change"] == "title")
|
||||||
&& parsed["container"]["focused"].asBool()) {
|
&& parsed["container"]["focused"].asBool()) {
|
||||||
window_ = parsed["container"]["name"].asString();
|
window_ = parsed["container"]["name"].asString();
|
||||||
thread_.sig_update.emit();
|
windowId_ = parsed["container"]["id"].asInt();
|
||||||
|
dp.emit();
|
||||||
|
} else if (parsed["change"] == "close"
|
||||||
|
&& parsed["container"]["focused"].asBool()
|
||||||
|
&& windowId_ == parsed["container"]["id"].asInt()) {
|
||||||
|
window_.clear();
|
||||||
|
windowId_ = -1;
|
||||||
|
dp.emit();
|
||||||
}
|
}
|
||||||
} catch (const std::exception& e) {
|
} catch (const std::exception& e) {
|
||||||
std::cerr << e.what() << std::endl;
|
std::cerr << e.what() << std::endl;
|
||||||
@ -26,38 +35,35 @@ waybar::modules::sway::Window::Window(Bar &bar, Json::Value config)
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
waybar::modules::sway::Window::~Window()
|
|
||||||
{
|
|
||||||
close(ipcfd_);
|
|
||||||
close(ipc_eventfd_);
|
|
||||||
}
|
|
||||||
|
|
||||||
auto waybar::modules::sway::Window::update() -> void
|
auto waybar::modules::sway::Window::update() -> void
|
||||||
{
|
{
|
||||||
label_.set_text(window_);
|
label_.set_text(fmt::format(format_, window_));
|
||||||
label_.set_tooltip_text(window_);
|
label_.set_tooltip_text(window_);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string waybar::modules::sway::Window::getFocusedNode(Json::Value nodes)
|
std::tuple<int, std::string> waybar::modules::sway::Window::getFocusedNode(
|
||||||
|
Json::Value nodes)
|
||||||
{
|
{
|
||||||
for (auto &node : nodes) {
|
for (auto const& node : nodes) {
|
||||||
if (node["focused"].asBool()) {
|
if (node["focused"].asBool() && node["type"] == "con") {
|
||||||
return node["name"].asString();
|
return { node["id"].asInt(), node["name"].asString() };
|
||||||
}
|
}
|
||||||
auto res = getFocusedNode(node["nodes"]);
|
auto [id, name] = getFocusedNode(node["nodes"]);
|
||||||
if (!res.empty()) {
|
if (id > -1 && !name.empty()) {
|
||||||
return res;
|
return { id, name };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return std::string();
|
return { -1, std::string() };
|
||||||
}
|
}
|
||||||
|
|
||||||
void waybar::modules::sway::Window::getFocusedWindow()
|
void waybar::modules::sway::Window::getFocusedWindow()
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
auto res = ipcSingleCommand(ipcfd_, IPC_GET_TREE, "");
|
auto res = ipc_.sendCmd(IPC_GET_TREE);
|
||||||
auto parsed = parser_.parse(res.payload);
|
auto parsed = parser_.parse(res.payload);
|
||||||
window_ = getFocusedNode(parsed["nodes"]);
|
auto [id, name] = getFocusedNode(parsed["nodes"]);
|
||||||
|
windowId_ = id;
|
||||||
|
window_ = name;
|
||||||
Glib::signal_idle().connect_once(sigc::mem_fun(*this, &Window::update));
|
Glib::signal_idle().connect_once(sigc::mem_fun(*this, &Window::update));
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
std::cerr << e.what() << std::endl;
|
std::cerr << e.what() << std::endl;
|
||||||
|
@ -1,15 +1,18 @@
|
|||||||
#include "modules/sway/workspaces.hpp"
|
#include "modules/sway/workspaces.hpp"
|
||||||
#include "modules/sway/ipc/client.hpp"
|
|
||||||
|
|
||||||
waybar::modules::sway::Workspaces::Workspaces(Bar &bar, Json::Value config)
|
waybar::modules::sway::Workspaces::Workspaces(Bar& bar,
|
||||||
: bar_(bar), config_(std::move(config)), scrolling_(false)
|
const Json::Value& config)
|
||||||
|
: bar_(bar), config_(config), scrolling_(false)
|
||||||
{
|
{
|
||||||
box_.set_name("workspaces");
|
box_.set_name("workspaces");
|
||||||
std::string socketPath = getSocketPath();
|
ipc_.connect();
|
||||||
ipcfd_ = ipcOpenSocket(socketPath);
|
ipc_.subscribe("[ \"workspace\" ]");
|
||||||
ipc_eventfd_ = ipcOpenSocket(socketPath);
|
// Launch worker
|
||||||
ipcSingleCommand(ipc_eventfd_, IPC_SUBSCRIBE, "[ \"workspace\" ]");
|
worker();
|
||||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Workspaces::update));
|
}
|
||||||
|
|
||||||
|
void waybar::modules::sway::Workspaces::worker()
|
||||||
|
{
|
||||||
thread_ = [this] {
|
thread_ = [this] {
|
||||||
try {
|
try {
|
||||||
// Wait for the name of the output
|
// Wait for the name of the output
|
||||||
@ -18,27 +21,24 @@ waybar::modules::sway::Workspaces::Workspaces(Bar &bar, Json::Value config)
|
|||||||
thread_.sleep_for(chrono::milliseconds(150));
|
thread_.sleep_for(chrono::milliseconds(150));
|
||||||
}
|
}
|
||||||
} else if (!workspaces_.empty()) {
|
} else if (!workspaces_.empty()) {
|
||||||
ipcRecvResponse(ipc_eventfd_);
|
ipc_.handleEvent();
|
||||||
}
|
}
|
||||||
thread_.sig_update.emit();
|
{
|
||||||
|
std::lock_guard<std::mutex> lock(mutex_);
|
||||||
|
auto res = ipc_.sendCmd(IPC_GET_WORKSPACES);
|
||||||
|
workspaces_ = parser_.parse(res.payload);
|
||||||
|
}
|
||||||
|
dp.emit();
|
||||||
} catch (const std::exception& e) {
|
} catch (const std::exception& e) {
|
||||||
std::cerr << e.what() << std::endl;
|
std::cerr << e.what() << std::endl;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
waybar::modules::sway::Workspaces::~Workspaces()
|
|
||||||
{
|
|
||||||
close(ipcfd_);
|
|
||||||
close(ipc_eventfd_);
|
|
||||||
}
|
|
||||||
|
|
||||||
auto waybar::modules::sway::Workspaces::update() -> void
|
auto waybar::modules::sway::Workspaces::update() -> void
|
||||||
{
|
{
|
||||||
std::lock_guard<std::mutex> lock(mutex_);
|
|
||||||
auto res = ipcSingleCommand(ipcfd_, IPC_GET_WORKSPACES, "");
|
|
||||||
workspaces_ = parser_.parse(res.payload);
|
|
||||||
bool needReorder = false;
|
bool needReorder = false;
|
||||||
|
std::lock_guard<std::mutex> lock(mutex_);
|
||||||
for (auto it = buttons_.begin(); it != buttons_.end();) {
|
for (auto it = buttons_.begin(); it != buttons_.end();) {
|
||||||
auto ws = std::find_if(workspaces_.begin(), workspaces_.end(),
|
auto ws = std::find_if(workspaces_.begin(), workspaces_.end(),
|
||||||
[it](auto node) -> bool { return node["num"].asInt() == it->first; });
|
[it](auto node) -> bool { return node["num"].asInt() == it->first; });
|
||||||
@ -49,7 +49,7 @@ auto waybar::modules::sway::Workspaces::update() -> void
|
|||||||
++it;
|
++it;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (auto node : workspaces_) {
|
for (auto const& node : workspaces_) {
|
||||||
if (!config_["all-outputs"].asBool()
|
if (!config_["all-outputs"].asBool()
|
||||||
&& bar_.output_name != node["output"].asString()) {
|
&& bar_.output_name != node["output"].asString()) {
|
||||||
continue;
|
continue;
|
||||||
@ -78,6 +78,15 @@ auto waybar::modules::sway::Workspaces::update() -> void
|
|||||||
if (needReorder) {
|
if (needReorder) {
|
||||||
box_.reorder_child(button, node["num"].asInt());
|
box_.reorder_child(button, node["num"].asInt());
|
||||||
}
|
}
|
||||||
|
auto icon = getIcon(node["name"].asString(), node);
|
||||||
|
if (config_["format"]) {
|
||||||
|
auto format = config_["format"].asString();
|
||||||
|
button.set_label(fmt::format(format, fmt::arg("icon", icon),
|
||||||
|
fmt::arg("name", node["name"].asString()),
|
||||||
|
fmt::arg("index", node["num"].asString())));
|
||||||
|
} else {
|
||||||
|
button.set_label(icon);
|
||||||
|
}
|
||||||
button.show();
|
button.show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -88,19 +97,21 @@ auto waybar::modules::sway::Workspaces::update() -> void
|
|||||||
|
|
||||||
void waybar::modules::sway::Workspaces::addWorkspace(Json::Value node)
|
void waybar::modules::sway::Workspaces::addWorkspace(Json::Value node)
|
||||||
{
|
{
|
||||||
auto icon = getIcon(node["name"].asString());
|
auto icon = getIcon(node["name"].asString(), node);
|
||||||
auto pair = buttons_.emplace(node["num"].asInt(), icon);
|
auto format = config_["format"]
|
||||||
|
? fmt::format(config_["format"].asString(), fmt::arg("icon", icon),
|
||||||
|
fmt::arg("name", node["name"].asString()),
|
||||||
|
fmt::arg("index", node["num"].asString()))
|
||||||
|
: icon;
|
||||||
|
auto pair = buttons_.emplace(node["num"].asInt(), format);
|
||||||
auto &button = pair.first->second;
|
auto &button = pair.first->second;
|
||||||
if (icon != node["name"].asString()) {
|
|
||||||
button.get_style_context()->add_class("icon");
|
|
||||||
}
|
|
||||||
box_.pack_start(button, false, false, 0);
|
box_.pack_start(button, false, false, 0);
|
||||||
button.set_relief(Gtk::RELIEF_NONE);
|
button.set_relief(Gtk::RELIEF_NONE);
|
||||||
button.signal_clicked().connect([this, pair] {
|
button.signal_clicked().connect([this, pair] {
|
||||||
try {
|
try {
|
||||||
std::lock_guard<std::mutex> lock(mutex_);
|
std::lock_guard<std::mutex> lock(mutex_);
|
||||||
auto cmd = fmt::format("workspace \"{}\"", pair.first->first);
|
auto cmd = fmt::format("workspace \"{}\"", pair.first->first);
|
||||||
ipcSingleCommand(ipcfd_, IPC_COMMAND, cmd);
|
ipc_.sendCmd(IPC_COMMAND, cmd);
|
||||||
} catch (const std::exception& e) {
|
} catch (const std::exception& e) {
|
||||||
std::cerr << e.what() << std::endl;
|
std::cerr << e.what() << std::endl;
|
||||||
}
|
}
|
||||||
@ -123,13 +134,19 @@ void waybar::modules::sway::Workspaces::addWorkspace(Json::Value node)
|
|||||||
button.show();
|
button.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string waybar::modules::sway::Workspaces::getIcon(std::string name)
|
std::string waybar::modules::sway::Workspaces::getIcon(std::string name,
|
||||||
|
Json::Value node)
|
||||||
{
|
{
|
||||||
if (config_["format-icons"][name]) {
|
std::vector<std::string> keys = {
|
||||||
return config_["format-icons"][name].asString();
|
name, "urgent", "focused", "visible", "default"};
|
||||||
}
|
for (auto const& key : keys) {
|
||||||
if (config_["format-icons"]["default"]) {
|
if (key == "focused" || key == "visible" || key == "urgent") {
|
||||||
return config_["format-icons"]["default"].asString();
|
if (config_["format-icons"][key] && node[key].asBool()) {
|
||||||
|
return config_["format-icons"][key].asString();
|
||||||
|
}
|
||||||
|
} else if (config_["format-icons"][key]) {
|
||||||
|
return config_["format-icons"][key].asString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
@ -143,11 +160,13 @@ bool waybar::modules::sway::Workspaces::handleScroll(GdkEventScroll *e)
|
|||||||
scrolling_ = true;
|
scrolling_ = true;
|
||||||
int id = -1;
|
int id = -1;
|
||||||
uint16_t idx = 0;
|
uint16_t idx = 0;
|
||||||
std::lock_guard<std::mutex> lock(mutex_);
|
{
|
||||||
for (; idx < workspaces_.size(); idx += 1) {
|
std::lock_guard<std::mutex> lock(mutex_);
|
||||||
if (workspaces_[idx]["focused"].asBool()) {
|
for (; idx < workspaces_.size(); idx += 1) {
|
||||||
id = workspaces_[idx]["num"].asInt();
|
if (workspaces_[idx]["focused"].asBool()) {
|
||||||
break;
|
id = workspaces_[idx]["num"].asInt();
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (id == -1) {
|
if (id == -1) {
|
||||||
@ -170,12 +189,15 @@ bool waybar::modules::sway::Workspaces::handleScroll(GdkEventScroll *e)
|
|||||||
id = getPrevWorkspace();
|
id = getPrevWorkspace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (id == workspaces_[idx]["num"].asInt()) {
|
{
|
||||||
scrolling_ = false;
|
std::lock_guard<std::mutex> lock(mutex_);
|
||||||
return false;
|
if (id == workspaces_[idx]["num"].asInt()) {
|
||||||
|
scrolling_ = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
ipc_.sendCmd(IPC_COMMAND, fmt::format("workspace \"{}\"", id));
|
||||||
|
std::this_thread::sleep_for(std::chrono::milliseconds(150));
|
||||||
}
|
}
|
||||||
ipcSingleCommand(ipcfd_, IPC_COMMAND, fmt::format("workspace \"{}\"", id));
|
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(150));
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user