Adjust RFC/TODO, forgot _GNU_SOURCE in layout.c
This commit is contained in:
parent
82dd64ff24
commit
651bcc375f
12
RFC
12
RFC
|
@ -27,16 +27,7 @@ FEATURES
|
||||||
|
|
||||||
KEYBINDINGS
|
KEYBINDINGS
|
||||||
|
|
||||||
* mod + cursor select window
|
Siehe Datei CMDMODE
|
||||||
* mod + shift + cursor move window
|
|
||||||
* mod + ctrl + cursor snap window
|
|
||||||
* mod + d/s default/stacking
|
|
||||||
* mod + 1|2|3|… switch to tag <1|2|3|…>
|
|
||||||
* mod + shift + 1|2|3|… move window to tag …
|
|
||||||
* mod + ctrl + 1|2|3|… move container to tag …
|
|
||||||
* mod + f fullscreen
|
|
||||||
* mod + k kill
|
|
||||||
* mod + return terminal
|
|
||||||
|
|
||||||
|
|
||||||
IMPLEMENTATIONSDETAILS
|
IMPLEMENTATIONSDETAILS
|
||||||
|
@ -45,7 +36,6 @@ IMPLEMENTATIONSDETAILS
|
||||||
* snap nach oben = move oben + snap unten
|
* snap nach oben = move oben + snap unten
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
HOOKS:
|
HOOKS:
|
||||||
|
|
||||||
* TODO: API
|
* TODO: API
|
||||||
|
|
3
TODO
3
TODO
|
@ -3,8 +3,7 @@ TODO list, in order of importance:
|
||||||
* freely resizable (e.g. using your mouse, for now) percentage of rows/cols
|
* freely resizable (e.g. using your mouse, for now) percentage of rows/cols
|
||||||
* fullscreen (handling of applications)
|
* fullscreen (handling of applications)
|
||||||
* fullscreen (implementing a mode, like default, stacked)
|
* fullscreen (implementing a mode, like default, stacked)
|
||||||
* workspaces+xinerama
|
* xinerama
|
||||||
* clean up the source code
|
|
||||||
* document stuff!
|
* document stuff!
|
||||||
* more documentation!
|
* more documentation!
|
||||||
* debian package
|
* debian package
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#define _GNU_SOURCE
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
Loading…
Reference in New Issue