feat(bspwm): added scrolling

This commit is contained in:
NBonaparte 2016-11-11 10:55:37 -08:00
parent dc2d33ceba
commit fbd957bf33
3 changed files with 31 additions and 16 deletions
include/modules

View file

@ -55,7 +55,10 @@ namespace modules {
static constexpr auto TAG_LABEL_MONITOR = "<label-monitor>";
static constexpr auto TAG_LABEL_STATE = "<label-state>";
static constexpr auto TAG_LABEL_MODE = "<label-mode>";
static constexpr auto EVENT_CLICK = "bwm";
static constexpr auto EVENT_PREFIX = "bwm";
static constexpr auto EVENT_CLICK = "bwmf";
static constexpr auto EVENT_SCROLL_UP = "bwmn";
static constexpr auto EVENT_SCROLL_DOWN = "bwmp";
bspwm_util::connection_t m_subscriber;