Skip to content

Commit

Permalink
Name Class, Icon, DragWindow + ResizeWindow (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerjenigeUberMensch authored May 13, 2024
1 parent 6493dec commit 8597354
Show file tree
Hide file tree
Showing 12 changed files with 520 additions and 235 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

include config.mk

SRCDIR = XCB-TRL

BIN = binary
SRC = $(wildcard *.c)
SRCH= $(wildcard *.h)
SRC += $(foreach dir, $(SRCDIR), $(wildcard $(dir)/*.c))
SRCH= $(foreach dir, $(SRCDIR), $(wildcard $(dir)/*.h))
OBJ = $(patsubst %.c,${BIN}/%.o,$(SRC))
VERSION = 1.0.0
VERSION = 2.0.0
EXE = dwm
EXEPATH = ${BIN}/${EXE}
CMACROS += -DVERSION=\"${VERSION}\" -DNAME=\"${EXE}\"
Expand Down
18 changes: 0 additions & 18 deletions bar.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,24 +208,6 @@ BarDrawBuff(
}





















/*
* id1 id2 id3 * 256
Expand Down
2 changes: 1 addition & 1 deletion bar.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#include "xcb_trl.h"
#include "XCB-TRL/xcb_trl.h"



Expand Down
3 changes: 1 addition & 2 deletions config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ BUILDSELF = ${RELEASEFLAGS} ${XNATIVE} -O3
# Set your options or presets (see above) ex: ${PRESETNAME} (Compiler used is on top)
CFLAGS = ${DEBUG}

CMACROS =
CMACROS = -DXINERAMA



Expand All @@ -80,7 +80,6 @@ endif
ifeq ($(CFLAGS), $(DEBUG))
CMACROS += -DENABLE_DEBUG
CMACROS += -DXCB_TRL_ENABLE_DEBUG
CMACROS += -DXINERAMA
endif

# Linker flags
Expand Down
Loading

0 comments on commit 8597354

Please sign in to comment.