X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fconfig.h;h=3144263dccb0bf37ee918727f62e4c5363b95e04;hb=f32cc6f4ae3f92c63d2f738b69d84269be8549ab;hp=ea1885cc9c1dd0dd56502c3f3bf4921e9fb61721;hpb=cea6f7ad96c5e28274dd49c4c394db7f80884bde;p=i3%2Fi3 diff --git a/include/config.h b/include/config.h index ea1885cc..3144263d 100644 --- a/include/config.h +++ b/include/config.h @@ -198,6 +198,18 @@ struct Barconfig { /** Bar display mode (hide unless modifier is pressed or show in dock mode) */ enum { M_DOCK = 0, M_HIDE = 1 } mode; + /** Bar modifier (to show bar when in hide mode). */ + enum { + M_NONE = 0, + M_CONTROL = 1, + M_SHIFT = 2, + M_MOD1 = 3, + M_MOD2 = 4, + M_MOD3 = 5, + M_MOD4 = 6, + M_MOD5 = 7 + } modifier; + /** Bar position (bottom by default). */ enum { P_BOTTOM = 0, P_TOP = 1 } position;