2021-10-20 20:45:23 +02:00
|
|
|
// somebar - dwl bar
|
|
|
|
// See LICENSE file for copyright and license details.
|
|
|
|
|
2021-10-22 15:42:42 +02:00
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
|
2021-10-21 08:28:22 +02:00
|
|
|
constexpr bool topbar = 1;
|
2021-10-22 15:49:09 +02:00
|
|
|
|
2021-10-22 15:34:19 +02:00
|
|
|
constexpr int paddingX = 10;
|
|
|
|
constexpr int paddingY = 3;
|
2021-10-22 15:42:42 +02:00
|
|
|
|
2021-10-22 15:49:09 +02:00
|
|
|
constexpr const char *fontFamily = "Source Sans Pro";
|
|
|
|
constexpr int fontSizePt = 12;
|
|
|
|
constexpr bool fontBold = true;
|
|
|
|
|
2021-10-22 15:42:42 +02:00
|
|
|
constexpr ColorScheme colorInactive = {QColor(255, 255, 255), QColor(0, 0, 0)};
|
|
|
|
constexpr ColorScheme colorActive = {QColor(255, 255, 255), QColor(0, 0, 255)};
|