summaryrefslogtreecommitdiff
path: root/somebar/src/config.def.hpp
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-04-04 17:44:21 +0100
committertslil <tslil@posteo.de>2026-04-04 17:47:21 +0100
commit5413fb67d5454666cd4606ac51e8f8d1ae31aa6e (patch)
treeeffd7869b631e1e1a455b65eea1a1f12263b4bba /somebar/src/config.def.hpp
parent0c860a57966d4c0f4ef817b9c7f378de4623a236 (diff)
cleanup
Diffstat (limited to 'somebar/src/config.def.hpp')
-rw-r--r--somebar/src/config.def.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/somebar/src/config.def.hpp b/somebar/src/config.def.hpp
deleted file mode 100644
index 40a8c95..0000000
--- a/somebar/src/config.def.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// somebar - dwl bar
-// See LICENSE file for copyright and license details.
-
-#pragma once
-#include "common.hpp"
-
-constexpr bool topbar = true;
-
-constexpr int paddingX = 10;
-constexpr int paddingY = 3;
-
-// See https://docs.gtk.org/Pango/type_func.FontDescription.from_string.html
-constexpr const char* font = "Sans 12";
-
-constexpr ColorScheme colorInactive = {Color(0xbb, 0xbb, 0xbb), Color(0x22, 0x22, 0x22)};
-constexpr ColorScheme colorActive = {Color(0xee, 0xee, 0xee), Color(0x00, 0x55, 0x77)};
-constexpr const char* termcmd[] = {"foot", nullptr};
-
-static std::vector<std::string> tagNames = {
- "1", "2", "3",
- "4", "5", "6",
- "7", "8", "9",
-};
-
-constexpr Button buttons[] = {
- { ClkStatusText, BTN_RIGHT, spawn, {.v = termcmd} },
-};