Implement scratchpad functionality (see userguide)
This commit is contained in:
@ -72,5 +72,6 @@
|
||||
#include "regex.h"
|
||||
#include "libi3.h"
|
||||
#include "startup.h"
|
||||
#include "scratchpad.h"
|
||||
|
||||
#endif
|
||||
|
@ -480,6 +480,12 @@ struct Con {
|
||||
|
||||
/** callbacks */
|
||||
void(*on_remove_child)(Con *);
|
||||
|
||||
enum {
|
||||
SCRATCHPAD_NONE = 0,
|
||||
SCRATCHPAD_FRESH = 1,
|
||||
SCRATCHPAD_CHANGED = 2
|
||||
} scratchpad_state;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user