dwm

Kris's build of dwm
git clone git clone https://git.krisyotam.com/krisyotam/dwm.git
Log | Files | Refs | README | LICENSE

decorationhints.h (299B)


      1 #define MWM_HINTS_FLAGS_FIELD       0
      2 #define MWM_HINTS_DECORATIONS_FIELD 2
      3 #define MWM_HINTS_DECORATIONS       (1 << 1)
      4 #define MWM_DECOR_ALL               (1 << 0)
      5 #define MWM_DECOR_BORDER            (1 << 1)
      6 #define MWM_DECOR_TITLE             (1 << 3)
      7 
      8 static void updatemotifhints(Client *c);
      9