summaryrefslogtreecommitdiff
path: root/localports/somebar/config.hpp
diff options
context:
space:
mode:
authorSam Nystrom <sam@samnystrom.dev>2023-10-24 21:34:46 -0400
committerSam Nystrom <sam@samnystrom.dev>2023-10-24 21:34:46 -0400
commit6fc3bdba27bc854c01108cc4c54086407a2daeb9 (patch)
tree90934b8e2dfa0255a42571efe71c8cae020694f4 /localports/somebar/config.hpp
parent0b6b998298afe1b04f84ff11427d23c7cce2ea5d (diff)
Remove localports that I build from source now
Diffstat (limited to 'localports/somebar/config.hpp')
-rw-r--r--localports/somebar/config.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/localports/somebar/config.hpp b/localports/somebar/config.hpp
deleted file mode 100644
index cf1654b..0000000
--- a/localports/somebar/config.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 = 2;
-
-// See https://docs.gtk.org/Pango/type_func.FontDescription.from_string.html
-constexpr const char* font = "FiraCode Nerd Font 12";
-
-constexpr ColorScheme colorInactive = {Color(0xc6, 0xa0, 0xf6), Color(0x24, 0x27, 0x3a)};
-constexpr ColorScheme colorActive = {Color(0x24, 0x27, 0x3a), Color(0xc6, 0xa0, 0xf6)};
-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} },
-};