Skip to content

Commit f975316

Browse files
committed
clean up messy git history
0 parents  commit f975316

File tree

4 files changed

+859
-0
lines changed

4 files changed

+859
-0
lines changed

LICENSE

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Copyright (c) 2015, Emily Ingalls <emily@ingalls.rocks>
2+
3+
Permission to use, copy, modify, and/or distribute this software for any
4+
purpose with or without fee is hereby granted, provided that the above
5+
copyright notice and this permission notice appear in all copies.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14+

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# makron
2+
Hi! This is my window manager. It's not really ready for use. I started it a few years back when I was much worse at coding, and I'm surprised I got as far as I did.
3+
4+
I began writing it because I couldn't find any other window managers for X that worked how I wanted - in particular, I would really like an identical implementation of the Stack & Tile window management system from Haiku.
5+
6+
This project hasn't quite gotten to that point. At the moment, functionality is very basic. It can just barely manage windows. Stack and tile functionality and general desktop usability is a ways away. It'll require some serious work in order to become as usable as I'd like.
7+
8+
Check back later! Maybe I'll have it more done.

makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
CFLAGS ?= -Wall -g
2+
# xcb headers
3+
CFLAGS != pkg-config --cflags xcb
4+
CFLAGS += -L../sulfur/ -lsulfur
5+
CFLAGS += -I../sulfur/include/
6+
OUT := makron
7+
8+
LIBS != pkg-config --libs xcb
9+
10+
all: $(OUT)
11+
12+
$(OUT): src/*.c
13+
$(CC) -o $(OUT) src/*.c $(LIBS) $(CFLAGS)
14+
15+
clean:
16+
rm $(OUT)

0 commit comments

Comments
 (0)