Merge branch 'hide' into next
This commit is contained in:
@ -26,4 +26,16 @@ void start_child(char *command);
|
||||
*/
|
||||
void kill_child();
|
||||
|
||||
/*
|
||||
* Sends a SIGSTOP to the child-process (if existent)
|
||||
*
|
||||
*/
|
||||
void stop_child();
|
||||
|
||||
/*
|
||||
* Sends a SIGCONT to the child-process (if existent)
|
||||
*
|
||||
*/
|
||||
void cont_child();
|
||||
|
||||
#endif
|
||||
|
@ -25,6 +25,7 @@ struct rect_t {
|
||||
|
||||
#include "queue.h"
|
||||
#include "child.h"
|
||||
#include "config.h"
|
||||
#include "ipc.h"
|
||||
#include "outputs.h"
|
||||
#include "util.h"
|
||||
|
10
i3bar/include/config.h
Normal file
10
i3bar/include/config.h
Normal file
@ -0,0 +1,10 @@
|
||||
#ifndef CONFIG_H_
|
||||
#define CONFIL_H_
|
||||
|
||||
typedef struct config_t {
|
||||
int hide_on_modifier;
|
||||
} config_t;
|
||||
|
||||
config_t config;
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user