summaryrefslogtreecommitdiff
path: root/include/swaynag/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/swaynag/types.h')
-rw-r--r--include/swaynag/types.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/swaynag/types.h b/include/swaynag/types.h
index 32056514..af83bd83 100644
--- a/include/swaynag/types.h
+++ b/include/swaynag/types.h
@@ -1,7 +1,7 @@
-#ifndef _SWAY_NAGBAR_TYPES_H
-#define _SWAY_NAGBAR_TYPES_H
+#ifndef _SWAYNAG_TYPES_H
+#define _SWAYNAG_TYPES_H
-struct sway_nagbar_type {
+struct swaynag_type {
char *name;
uint32_t button_background;
uint32_t background;
@@ -10,16 +10,16 @@ struct sway_nagbar_type {
uint32_t border_bottom;
};
-void nagbar_types_add_default(list_t *types);
+void swaynag_types_add_default(list_t *types);
-struct sway_nagbar_type *nagbar_type_get(list_t *types, char *name);
+struct swaynag_type *swaynag_type_get(list_t *types, char *name);
-struct sway_nagbar_type *nagbar_type_clone(struct sway_nagbar_type *type);
+struct swaynag_type *swaynag_type_clone(struct swaynag_type *type);
-void nagbar_type_free(struct sway_nagbar_type *type);
+void swaynag_type_free(struct swaynag_type *type);
-void nagbar_types_free(list_t *types);
+void swaynag_types_free(list_t *types);
-int nagbar_parse_type(int argc, char **argv, struct sway_nagbar_type *type);
+int swaynag_parse_type(int argc, char **argv, struct swaynag_type *type);
#endif