bar config: make dock mode the default

This commit is contained in:
Michael Stapelberg 2011-10-20 23:38:55 +01:00
parent 0f3d31124d
commit 2647f47ec5
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ struct Barconfig {
char *socket_path;
/** Bar display mode (hide unless modifier is pressed or show in dock mode) */
enum { M_HIDE = 0, M_DOCK = 1 } mode;
enum { M_DOCK = 0, M_HIDE = 1 } mode;
/** Bar position (bottom by default). */
enum { P_BOTTOM = 0, P_TOP = 1 } position;