polytreewm/helpers.h
Alex Kotov 709a30d70b
Allow to disable dynamic fullscreen borders and gaps
When there are some fullscreen windows in monocle layout,
it may be annoying than borders and gaps are changed when you
change focus.
2021-11-16 07:12:31 +05:00

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