xaizek / euclid-wm (License: BSD 3-Clause) (since 2018-12-07)
A minimalist, tiling window manager for X11 that seeks to allow easy management of numerous windows entirely from the keyboard.
Commit 4204f29d36a63ff682045add4df7c1d4c6f102ac

xaizek: fix segsault on sloppy focus transfer
Author: wmdiem
Author date (UTC): 2014-02-18 00:31
Committer name: wmdiem
Committer date (UTC): 2014-02-18 00:31
Parent(s): b6f51937de323a7f080e72a5c4c9ee0b88c65464
Signing key:
Tree: f552dd2e2c0d8b767f57a493369f36a14b6eb4ad
File Lines added Lines deleted
euclid-wm.c 3 1
File euclid-wm.c changed (mode: 100644) (index bcd4eb4..67609ef)
... ... int event_loop() {
2728 2728 s = s->next; s = s->next;
2729 2729 }; };
2730 2730 cs = s; cs = s;
2731 cs->v->mfocus = f;
2731 if (cs != NULL) {
2732 cs->v->mfocus = f;
2733 };
2732 2734 redraw = true; redraw = true;
2733 2735 }; };
2734 2736 }; };
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/euclid-wm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/euclid-wm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master