5 Commits
1.3 ... 1.6

Author SHA1 Message Date
Dylan Araps
f201a467ea sowm: Fix linker errors. Closes #61 2020-02-21 18:08:47 +02:00
Dylan Araps
7821aac0d2 sowm: Fix Makefile 2020-02-20 18:41:45 +02:00
Dylan Araps
a1c80d9b23 sowm: Fix Makefile 2020-02-20 18:40:29 +02:00
Dylan Araps
0df345e1da sowm: Fix compiler warning 2020-02-20 18:37:19 +02:00
Dylan Araps
b5087acaac docs: update 2020-02-20 18:34:57 +02:00
3 changed files with 7 additions and 5 deletions

View File

@@ -9,8 +9,8 @@ all: config.h sowm
config.h:
cp config.def.h config.h
sowm: sowm.o
$(CC) $(LDFLAGS) -O3 -o sowm sowm.c -lX11
sowm:
$(CC) -O3 $(CFLAGS) -o sowm sowm.c -lX11 $(LDFLAGS)
install: all
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm

View File

@@ -9,7 +9,8 @@ An itsy bitsy floating window manager (*220~ sloc / 24kb compiled!*).
- Window centering.
- Mix of mouse and keyboard workflow.
- Focus with cursor.
- Rounded corners (*[through patch](https://github.com/dylanaraps/sowm-patches)*)
- Rounded corners (*[through patch](https://github.com/dylanaraps/sowm/pull/58)*)
- Titlebars (*[through patch](https://github.com/dylanaraps/sowm/pull/57)*)
<a href="https://user-images.githubusercontent.com/6799467/66687814-8cd9f800-ec73-11e9-97b8-6ae77876bd1b.jpg"><img src="https://user-images.githubusercontent.com/6799467/66687814-8cd9f800-ec73-11e9-97b8-6ae77876bd1b.jpg" width="43%" align="right"></a>
@@ -23,7 +24,7 @@ An itsy bitsy floating window manager (*220~ sloc / 24kb compiled!*).
<br>
Patches available here: https://github.com/dylanaraps/sowm-patches
Patches available here: https://github.com/dylanaraps/sowm/pulls
## Default Keybindings

3
sowm.h
View File

@@ -53,4 +53,5 @@ void win_prev(const Arg arg);
void win_next(const Arg arg);
void win_to_ws(const Arg arg);
void ws_go(const Arg arg);
int xerror() { return 0; }
static int xerror() { return 0; }