click handling (without modifiers)
This commit is contained in:
parent
dd9c7d72cc
commit
8c959d60a1
6 changed files with 115 additions and 31 deletions
|
|
@ -16,3 +16,11 @@ constexpr bool fontBold = false;
|
|||
constexpr ColorScheme colorInactive = {QColor(0xbb, 0xbb, 0xbb), QColor(0x22, 0x22, 0x22)};
|
||||
constexpr ColorScheme colorActive = {QColor(0xee, 0xee, 0xee), QColor(0x00, 0x55, 0x77)};
|
||||
constexpr ColorScheme colorUrgent = {colorActive.bg, colorActive.fg};
|
||||
|
||||
constexpr Button buttons[] = {
|
||||
{ Control::TagBar, 0, BTN_LEFT, toggleview, {0} },
|
||||
{ Control::TagBar, 0, BTN_MIDDLE, view, {0} },
|
||||
//{ Control::TagBar, 0, BTN_RIGHT, tag, {0} },
|
||||
{ Control::LayoutSymbol, 0, BTN_LEFT, setlayout, {.ui = 0} },
|
||||
{ Control::LayoutSymbol, 0, BTN_RIGHT, setlayout, {.ui = 2} },
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue