https://github.com/swaywm/sway.git
Raw File
Tip revision: 3ede5983b9f39e5f110c5540d136945bc66d2fc0 authored by Ryan Dwyer on 11 March 2019, 08:11:01 UTC
Fix click behaviour
Tip revision: 3ede598
config.h
#ifndef _SWAYNAG_CONFIG_H
#define _SWAYNAG_CONFIG_H
#include "swaynag/swaynag.h"
#include "list.h"

int swaynag_parse_options(int argc, char **argv, struct swaynag *swaynag,
		list_t *types, struct swaynag_type *type, char **config, bool *debug);

char *swaynag_get_config_path(void);

int swaynag_load_config(char *path, struct swaynag *swaynag, list_t *types);

#endif
back to top