diff --git a/config.def.h b/config.def.h index 58b3398..86352e7 100644 --- a/config.def.h +++ b/config.def.h @@ -13,6 +13,9 @@ static const int swallowfloating = 0; /* 1 means swallow floating wind static const int scalepreview = 4; /* Tag preview scaling */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ +/* Custom Status Bar implementation */ +// static const int usealtbar = 0; /* 1 means use non-dwm status bar */ +// static const char *altbarclass = "Polybar"; /* Alternate bar class name */ /* Status is to be shown on: -1 (all monitors), 0 (a specific monitor by index), 'A' (active monitor) */ static const int statusmon = -1; static const unsigned int systrayspacing = 2; /* systray spacing */ @@ -208,7 +211,7 @@ static const MonitorRule monrules[] = { static const BarRule barrules[] = { /* monitor bar alignment widthfunc drawfunc clickfunc hoverfunc name */ { -1, 0, BAR_ALIGN_LEFT, width_tags, draw_tags, click_tags, hover_tags, "tags" }, - { 0, 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, NULL, "systray" }, + { 'A', 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, NULL, "systray" }, { -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, NULL, "layout" }, { statusmon, 0, BAR_ALIGN_RIGHT, width_status, draw_status, click_status, NULL, "status" }, { -1, 0, BAR_ALIGN_NONE, width_bartabgroups, draw_bartabgroups, click_bartabgroups, NULL, "bartabgroups" },