somebar/src/config.hpp

14 lines
386 B
C++
Raw Normal View History

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-22 15:34:19 +02:00
constexpr int barSize = 26;
2021-10-21 08:28:22 +02:00
constexpr bool topbar = 1;
2021-10-22 15:34:19 +02:00
constexpr int paddingX = 10;
constexpr int paddingY = 3;
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)};