From: Michael Stapelberg Date: Thu, 20 Oct 2011 22:38:55 +0000 (+0100) Subject: bar config: make dock mode the default X-Git-Tag: 4.1~92^2~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2647f47ec5533e738b57d1c4f4aff27c34fc6e25;p=i3%2Fi3 bar config: make dock mode the default --- diff --git a/include/config.h b/include/config.h index a4a274cf..bb092091 100644 --- a/include/config.h +++ b/include/config.h @@ -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;