receive bar state

This commit is contained in:
Raphael Robatsch 2021-10-25 20:52:21 +02:00
commit 629e8f6e1c
5 changed files with 63 additions and 27 deletions

View file

@ -4,7 +4,7 @@
#pragma once
#include "common.hpp"
constexpr bool topbar = 1;
constexpr bool topbar = true;
constexpr int paddingX = 10;
constexpr int paddingY = 3;
@ -15,3 +15,4 @@ constexpr bool fontBold = true;
constexpr ColorScheme colorInactive = {QColor(255, 255, 255), QColor(0, 0, 0)};
constexpr ColorScheme colorActive = {QColor(255, 255, 255), QColor(0, 0, 255)};
constexpr ColorScheme colorUrgent = {colorActive.bg, colorActive.fg};