From 25a6c1b0f3458f2907f3d7ba06f298ef68c6b8b4 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sat, 31 Jul 2021 00:46:54 +0200 Subject: [PATCH] Cleanup --- src/config.h | 3 --- src/dwm.c | 1 - 2 files changed, 4 deletions(-) diff --git a/src/config.h b/src/config.h index a84f1bd..01a3651 100644 --- a/src/config.h +++ b/src/config.h @@ -1,8 +1,5 @@ /* See LICENSE file for copyright and license details. */ -/* logging */ -static const char* logfile = "/tmp/dwm.log"; - /* appearance */ static const unsigned int borderpx = 4; /* border pixel of windows */ static const unsigned int snap = 16; /* snap pixel (32)*/ diff --git a/src/dwm.c b/src/dwm.c index 29acb6b..6973097 100644 --- a/src/dwm.c +++ b/src/dwm.c @@ -44,7 +44,6 @@ #include "drw.h" #include "util.h" -#include "log.h" /* macros */ #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)