diff --git a/src/dunst.h b/src/dunst.h index c54810f..bc15127 100644 --- a/src/dunst.h +++ b/src/dunst.h @@ -19,11 +19,6 @@ #define ColFG 1 #define ColBG 0 -enum alignment { left, center, right }; -enum icon_position_t { icons_left, icons_right, icons_off }; -enum separator_color { FOREGROUND, AUTO, FRAME, CUSTOM }; -enum follow_mode { FOLLOW_NONE, FOLLOW_MOUSE, FOLLOW_KEYBOARD }; - extern int verbosity; extern GQueue *queue; extern GQueue *displayed; diff --git a/src/settings.h b/src/settings.h index 9a1709c..eb780b6 100644 --- a/src/settings.h +++ b/src/settings.h @@ -2,6 +2,11 @@ #ifndef DUNST_SETTINGS_H #define DUNST_SETTINGS_H +enum alignment { left, center, right }; +enum icon_position_t { icons_left, icons_right, icons_off }; +enum separator_color { FOREGROUND, AUTO, FRAME, CUSTOM }; +enum follow_mode { FOLLOW_NONE, FOLLOW_MOUSE, FOLLOW_KEYBOARD }; + typedef struct _settings { bool print_notifications; bool allow_markup;