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
|
||||
|
||||
* mod + cursor select window
|
||||
* 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
|
||||
Siehe Datei CMDMODE
|
||||
|
||||
|
||||
IMPLEMENTATIONSDETAILS
|
||||
|
@ -45,7 +36,6 @@ IMPLEMENTATIONSDETAILS
|
|||
* snap nach oben = move oben + snap unten
|
||||
|
||||
|
||||
|
||||
HOOKS:
|
||||
|
||||
* 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
|
||||
* fullscreen (handling of applications)
|
||||
* fullscreen (implementing a mode, like default, stacked)
|
||||
* workspaces+xinerama
|
||||
* clean up the source code
|
||||
* xinerama
|
||||
* document stuff!
|
||||
* more documentation!
|
||||
* debian package
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Reference in New Issue