Alex Kotov
709a30d70b
When there are some fullscreen windows in monocle layout, it may be annoying than borders and gaps are changed when you change focus.
18 lines
312 B
C
18 lines
312 B
C
#ifndef _HELPERS_H
|
|
#define _HELPERS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
int helpers_gap_size(
|
|
unsigned int displayed_clients,
|
|
bool selected_is_fullscreen,
|
|
bool any_is_fullscreen
|
|
);
|
|
|
|
int helpers_border_width(
|
|
unsigned int displayed_clients,
|
|
bool selected_is_fullscreen,
|
|
bool any_is_fullscreen
|
|
);
|
|
|
|
#endif // _HELPERS_H
|