Skip to content

Commit

Permalink
Merge pull request #32 from yazeed1s/xrandr-fixes
Browse files Browse the repository at this point in the history
Xrandr fixes
  • Loading branch information
yazeed1s authored Dec 13, 2024
2 parents f224503 + 8c9751f commit d4976b1
Show file tree
Hide file tree
Showing 13 changed files with 3,346 additions and 2,860 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
CC = gcc
CFLAGS = -Wextra -Wshadow -Wunreachable-code -Wcast-align -Wuninitialized -finline-functions -finline-small-functions -findirect-inlining -fstrict-aliasing -falign-functions -falign-jumps -falign-labels -falign-loops -fprefetch-loop-arrays -fdump-rtl-loop2
CFLAGS = -Wextra -Wshadow -Wunreachable-code -Wcast-align -Wuninitialized -finline-functions -finline-small-functions

LDFLAGS = -lxcb -lxcb-util -lxcb-keysyms -lxcb-ewmh -lxcb-icccm -lxcb-randr -lxcb-xinerama -lxcb-cursor
SRC_FILES = ./src/zwm.c ./src/logger.c ./src/tree.c ./src/config_parser.c
HEADER_FILES = ./src/logger.h ./src/tree.h ./src/type.h ./src/zwm.h ./src/config_parser.h ./src/helper.h
SRC_FILES = ./src/zwm.c ./src/logger.c ./src/tree.c ./src/config_parser.c ./src/queue.c
HEADER_FILES = ./src/logger.h ./src/tree.h ./src/type.h ./src/zwm.h ./src/config_parser.h ./src/helper.h ./src/queue.h
OBJ_FILES = $(SRC_FILES:.c=.o)
DEBUG_FLAGS = -g -O0 -D_DEBUG__=1
DEBUG_FLAGS = -g -D_DEBUG__=1
GDB_FLAGS = -ggdb3
LOCAL_TEST = -D__LTEST__=1
TARGET = zwm
Expand Down
2 changes: 1 addition & 1 deletion _clang-format
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TabWidth: 4
IndentWidth: 4
UseTab: Always
ColumnLimit: 75
ColumnLimit: 80
AccessModifierOffset: 1
AlignAfterOpenBracket: Align
AlignArrayOfStructures: Left
Expand Down
Loading

0 comments on commit d4976b1

Please sign in to comment.