From 943fd1aaece621356a14e6d563cfa02fad617666 Mon Sep 17 00:00:00 2001
From: patrick96
Date: Sat, 12 May 2018 18:44:28 +0200
Subject: [PATCH] fix(build): Build without xrm
When xrm was disabled, main.cpp was missing the complete defintion of
connection from connection.hpp, which was included xresources.hpp when
xrm was enabled.
---
src/main.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/main.cpp b/src/main.cpp
index 7451d4e7..14de301a 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -6,6 +6,7 @@
#include "utils/env.hpp"
#include "utils/inotify.hpp"
#include "utils/process.hpp"
+#include "x11/connection.hpp"
using namespace polybar;