Add toggle bottom bar
This commit is contained in:
parent
15533ee00e
commit
866d2f9d30
15
config.def.h
15
config.def.h
|
@ -3,13 +3,14 @@
|
||||||
#include <X11/XF86keysym.h>
|
#include <X11/XF86keysym.h>
|
||||||
|
|
||||||
/* appearance */
|
/* appearance */
|
||||||
static const unsigned int borderpx = 4;/* border pixel of windows */
|
static const unsigned int borderpx = 4; /* border pixel of windows */
|
||||||
static const unsigned int gappx = 15; /* gaps between windows */
|
static const unsigned int gappx = 15; /* gaps between windows */
|
||||||
static const unsigned int snap = 32; /* snap pixel */
|
static const unsigned int snap = 32; /* snap pixel */
|
||||||
static const int showbar= 1;/* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1;/* 0 means bottom bar */
|
static const int showextrabar = 1; /* 0 means no extra bar */
|
||||||
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char statussep = ';';
|
static const char statussep = ';';
|
||||||
static const int horizpadbar= 8;/* horizontal padding for statusbar */
|
static const int horizpadbar = 8; /* horizontal padding for statusbar */
|
||||||
static const int vertpadbar = 12; /* vertical padding for statusbar */
|
static const int vertpadbar = 12; /* vertical padding for statusbar */
|
||||||
static const char *fonts[] = { "Ubuntu Mono:size=12" };
|
static const char *fonts[] = { "Ubuntu Mono:size=12" };
|
||||||
static const char dmenufont[] = "Ubuntu Mono:size=12";
|
static const char dmenufont[] = "Ubuntu Mono:size=12";
|
||||||
|
@ -17,7 +18,7 @@ static const char col_gray1[] = "#222222";
|
||||||
static const char col_gray2[] = "#444444";
|
static const char col_gray2[] = "#444444";
|
||||||
static const char col_gray3[] = "#bbbbbb";
|
static const char col_gray3[] = "#bbbbbb";
|
||||||
static const char col_gray4[] = "#eeeeee";
|
static const char col_gray4[] = "#eeeeee";
|
||||||
static const char col_cyan[]= "#005577";
|
static const char col_cyan[] = "#005577";
|
||||||
static const char *colors[][3] = {
|
static const char *colors[][3] = {
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
||||||
|
@ -116,8 +117,8 @@ static const Key keys[] = {
|
||||||
{ 0, XF86XK_AudioMute, spawn, {.v = volmute } },
|
{ 0, XF86XK_AudioMute, spawn, {.v = volmute } },
|
||||||
{ SUPERKEY, XK_d, spawn, {.v = dmenucmd } },
|
{ SUPERKEY, XK_d, spawn, {.v = dmenucmd } },
|
||||||
{ SUPERKEY, XK_Return, spawn, {.v = termcmd } },
|
{ SUPERKEY, XK_Return, spawn, {.v = termcmd } },
|
||||||
{ SUPERKEY, XK_b, togglebar, {.i = 1} },
|
{ SUPERKEY, XK_b, togglebar, {0} },
|
||||||
{ SUPERKEY|ShiftMask, XK_b, togglebar, {.i = 2} },
|
{ SUPERKEY|ShiftMask, XK_b, toggleextrabar, {0} },
|
||||||
{ ALTKEY, XK_Tab, focusstack, {.i = +1 } },
|
{ ALTKEY, XK_Tab, focusstack, {.i = +1 } },
|
||||||
{ SUPERKEY, XK_i, incnmaster, {.i = +1 } },
|
{ SUPERKEY, XK_i, incnmaster, {.i = +1 } },
|
||||||
{ SUPERKEY, XK_p, incnmaster, {.i = -1 } },
|
{ SUPERKEY, XK_p, incnmaster, {.i = -1 } },
|
||||||
|
|
39
config.h
39
config.h
|
@ -7,6 +7,7 @@ static const unsigned int borderpx = 4; /* border pixel of windows */
|
||||||
static const unsigned int gappx = 15; /* gaps between windows */
|
static const unsigned int gappx = 15; /* gaps between windows */
|
||||||
static const unsigned int snap = 32; /* snap pixel */
|
static const unsigned int snap = 32; /* snap pixel */
|
||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
|
static const int showextrabar = 1; /* 0 means no extra bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char statussep = ';';
|
static const char statussep = ';';
|
||||||
static const int horizpadbar = 8; /* horizontal padding for statusbar */
|
static const int horizpadbar = 8; /* horizontal padding for statusbar */
|
||||||
|
@ -45,6 +46,7 @@ static const Rule rules[] = {
|
||||||
{ "vesktop", NULL, NULL, 1 << 3, 0, -1 },
|
{ "vesktop", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
{ "discord", NULL, NULL, 1 << 3, 0, -1 },
|
{ "discord", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
{ "KotatogramDesktop", NULL, NULL, 1 << 3, 0, -1 },
|
{ "KotatogramDesktop", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
|
{ NULL, "Telegram", NULL, 1 << 3, 0, -1 },
|
||||||
// ----- 5 -----
|
// ----- 5 -----
|
||||||
{ "Steam", NULL, NULL, 1 << 4, 0, -1 },
|
{ "Steam", NULL, NULL, 1 << 4, 0, -1 },
|
||||||
{ "steam", NULL, NULL, 1 << 4, 0, -1 },
|
{ "steam", NULL, NULL, 1 << 4, 0, -1 },
|
||||||
|
@ -63,8 +65,8 @@ static const Rule rules[] = {
|
||||||
|
|
||||||
/* layout(s) */
|
/* layout(s) */
|
||||||
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
||||||
static const int nmaster = 1; /* number of clients in master area */
|
static const int nmaster = 1;/* number of clients in master area */
|
||||||
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
|
static const int resizehints = 1;/* 1 means respect size hints in tiled resizals */
|
||||||
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
||||||
|
|
||||||
#include "layouts.c"
|
#include "layouts.c"
|
||||||
|
@ -115,8 +117,8 @@ static const Key keys[] = {
|
||||||
{ 0, XF86XK_AudioMute, spawn, {.v = volmute } },
|
{ 0, XF86XK_AudioMute, spawn, {.v = volmute } },
|
||||||
{ SUPERKEY, XK_d, spawn, {.v = dmenucmd } },
|
{ SUPERKEY, XK_d, spawn, {.v = dmenucmd } },
|
||||||
{ SUPERKEY, XK_Return, spawn, {.v = termcmd } },
|
{ SUPERKEY, XK_Return, spawn, {.v = termcmd } },
|
||||||
{ SUPERKEY, XK_b, togglebar, {.i = 1} },
|
{ SUPERKEY, XK_b, togglebar, {0} },
|
||||||
{ SUPERKEY|ShiftMask, XK_b, togglebar, {.i = 2} },
|
{ SUPERKEY|ShiftMask, XK_b, toggleextrabar, {0} },
|
||||||
{ ALTKEY, XK_Tab, focusstack, {.i = +1 } },
|
{ ALTKEY, XK_Tab, focusstack, {.i = +1 } },
|
||||||
{ SUPERKEY, XK_i, incnmaster, {.i = +1 } },
|
{ SUPERKEY, XK_i, incnmaster, {.i = +1 } },
|
||||||
{ SUPERKEY, XK_p, incnmaster, {.i = -1 } },
|
{ SUPERKEY, XK_p, incnmaster, {.i = -1 } },
|
||||||
|
@ -125,7 +127,7 @@ static const Key keys[] = {
|
||||||
{ SUPERKEY|ShiftMask, XK_Return, zoom, {0} },
|
{ SUPERKEY|ShiftMask, XK_Return, zoom, {0} },
|
||||||
{ SUPERKEY, XK_q, killclient, {0} },
|
{ SUPERKEY, XK_q, killclient, {0} },
|
||||||
{ SUPERKEY, XK_g, setlayout, {.v = &layouts[0]} },
|
{ SUPERKEY, XK_g, setlayout, {.v = &layouts[0]} },
|
||||||
{ SUPERKEY, XK_t, setlayout, {.v = &layouts[1]} },
|
// { SUPERKEY, XK_t, setlayout, {.v = &layouts[1]} },
|
||||||
{ SUPERKEY, XK_f, setlayout, {.v = &layouts[2]} },
|
{ SUPERKEY, XK_f, setlayout, {.v = &layouts[2]} },
|
||||||
{ SUPERKEY, XK_m, setlayout, {.v = &layouts[3]} },
|
{ SUPERKEY, XK_m, setlayout, {.v = &layouts[3]} },
|
||||||
{ SUPERKEY|ShiftMask, XK_space, togglefloating, {0} },
|
{ SUPERKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||||
|
@ -134,25 +136,25 @@ static const Key keys[] = {
|
||||||
// { SUPERKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
|
// { SUPERKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
|
||||||
// { SUPERKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
|
// { SUPERKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
|
||||||
{ SUPERKEY|ShiftMask, XK_f, togglefullscr, {0} },
|
{ SUPERKEY|ShiftMask, XK_f, togglefullscr, {0} },
|
||||||
TAGKEYS( XK_1, 0)
|
TAGKEYS(XK_1, 0)
|
||||||
TAGKEYS( XK_2, 1)
|
TAGKEYS(XK_2, 1)
|
||||||
TAGKEYS( XK_3, 2)
|
TAGKEYS(XK_3, 2)
|
||||||
TAGKEYS( XK_4, 3)
|
TAGKEYS(XK_4, 3)
|
||||||
TAGKEYS( XK_5, 4)
|
TAGKEYS(XK_5, 4)
|
||||||
TAGKEYS( XK_6, 5)
|
TAGKEYS(XK_6, 5)
|
||||||
TAGKEYS( XK_7, 6)
|
TAGKEYS(XK_7, 6)
|
||||||
TAGKEYS( XK_8, 7)
|
TAGKEYS(XK_8, 7)
|
||||||
TAGKEYS( XK_9, 8)
|
TAGKEYS(XK_9, 8)
|
||||||
TAGKEYS( XK_0, 9)
|
TAGKEYS(XK_0, 9)
|
||||||
TAGKEYS( XK_minus, 10)
|
TAGKEYS(XK_minus, 10)
|
||||||
TAGKEYS( XK_equal, 11)
|
TAGKEYS(XK_equal, 11)
|
||||||
{ SUPERKEY|ShiftMask, XK_q, quitprompt, {0} },
|
{ SUPERKEY|ShiftMask, XK_q, quitprompt, {0} },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* button definitions */
|
/* button definitions */
|
||||||
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
||||||
static const Button buttons[] = {
|
static const Button buttons[] = {
|
||||||
/* click event mask button function argument */
|
/* clickevent mask button function argument */
|
||||||
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
|
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
|
||||||
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
|
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
|
||||||
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
||||||
|
@ -164,4 +166,3 @@ static const Button buttons[] = {
|
||||||
{ ClkTagBar, SUPERKEY, Button1, tag, {0} },
|
{ ClkTagBar, SUPERKEY, Button1, tag, {0} },
|
||||||
{ ClkTagBar, SUPERKEY, Button3, toggletag, {0} },
|
{ ClkTagBar, SUPERKEY, Button3, toggletag, {0} },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
35
dwm.c
35
dwm.c
|
@ -125,6 +125,7 @@ struct Monitor {
|
||||||
unsigned int sellt;
|
unsigned int sellt;
|
||||||
unsigned int tagset[2];
|
unsigned int tagset[2];
|
||||||
int showbar;
|
int showbar;
|
||||||
|
int showextrabar;
|
||||||
int topbar;
|
int topbar;
|
||||||
Client *clients;
|
Client *clients;
|
||||||
Client *sel;
|
Client *sel;
|
||||||
|
@ -211,6 +212,7 @@ static void showhide(Client *c);
|
||||||
static void spawn(const Arg *arg);
|
static void spawn(const Arg *arg);
|
||||||
static void tag(const Arg *arg);
|
static void tag(const Arg *arg);
|
||||||
static void togglebar(const Arg *arg);
|
static void togglebar(const Arg *arg);
|
||||||
|
static void toggleextrabar(const Arg *arg);
|
||||||
static void togglefloating(const Arg *arg);
|
static void togglefloating(const Arg *arg);
|
||||||
static void togglefullscr(const Arg *arg);
|
static void togglefullscr(const Arg *arg);
|
||||||
static void toggletag(const Arg *arg);
|
static void toggletag(const Arg *arg);
|
||||||
|
@ -655,6 +657,7 @@ createmon(void)
|
||||||
m->mfact = mfact;
|
m->mfact = mfact;
|
||||||
m->nmaster = nmaster;
|
m->nmaster = nmaster;
|
||||||
m->showbar = showbar;
|
m->showbar = showbar;
|
||||||
|
m->showextrabar = showextrabar;
|
||||||
m->topbar = topbar;
|
m->topbar = topbar;
|
||||||
m->lt[0] = &layouts[0];
|
m->lt[0] = &layouts[0];
|
||||||
m->lt[1] = &layouts[1 % LENGTH(layouts)];
|
m->lt[1] = &layouts[1 % LENGTH(layouts)];
|
||||||
|
@ -831,7 +834,7 @@ drawbar(Monitor *m)
|
||||||
unsigned int i, occ = 0, urg = 0;
|
unsigned int i, occ = 0, urg = 0;
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
if (!m->showbar)
|
if (!m->showbar && !m->showextrabar)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* draw status first so it can be overdrawn by tags later */
|
/* draw status first so it can be overdrawn by tags later */
|
||||||
|
@ -1826,6 +1829,14 @@ togglebar(const Arg *arg)
|
||||||
selmon->showbar = selmon->pertag->showbars[selmon->pertag->curtag] = !selmon->showbar;
|
selmon->showbar = selmon->pertag->showbars[selmon->pertag->curtag] = !selmon->showbar;
|
||||||
updatebarpos(selmon);
|
updatebarpos(selmon);
|
||||||
XMoveResizeWindow(dpy, selmon->barwin, selmon->wx + gappx, selmon->by + gappx, selmon->ww - 2 * gappx, bh);
|
XMoveResizeWindow(dpy, selmon->barwin, selmon->wx + gappx, selmon->by + gappx, selmon->ww - 2 * gappx, bh);
|
||||||
|
arrange(selmon);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
toggleextrabar(const Arg *arg)
|
||||||
|
{
|
||||||
|
selmon->showextrabar = !selmon->showextrabar;
|
||||||
|
updatebarpos(selmon);
|
||||||
XMoveResizeWindow(dpy, selmon->extrabarwin, selmon->wx + gappx, selmon->eby - gappx, selmon->ww - 2 * gappx, bh);
|
XMoveResizeWindow(dpy, selmon->extrabarwin, selmon->wx + gappx, selmon->eby - gappx, selmon->ww - 2 * gappx, bh);
|
||||||
arrange(selmon);
|
arrange(selmon);
|
||||||
}
|
}
|
||||||
|
@ -1998,17 +2009,23 @@ updatebarpos(Monitor *m)
|
||||||
{
|
{
|
||||||
m->wy = m->my;
|
m->wy = m->my;
|
||||||
m->wh = m->mh;
|
m->wh = m->mh;
|
||||||
m->wh -= bh * m->showbar * 2;
|
|
||||||
m->wy = m->showbar ? m->wy + bh + gappx : m->wy;
|
m->wy = m->showbar ? m->wy + bh + gappx : m->wy;
|
||||||
|
|
||||||
if (m->showbar) {
|
if (m->showbar) {
|
||||||
m->by = m->topbar ? m->wy - bh - gappx : m->wy + m->wh + gappx;
|
m->wh -= bh * m->showbar;
|
||||||
m->eby = m->topbar ? m->wy + m->wh - gappx : m->wy - bh - gappx * 2;
|
m->by = m->wy - bh - gappx;
|
||||||
m->wy = topbar ? m->wy : m->wy - gappx * 2;
|
m->wh = m->wh - gappx;
|
||||||
m->wh = topbar ? m->wh - gappx * 2 : m->wh + gappx * 2;
|
|
||||||
} else {
|
|
||||||
m->by = -bh - gappx;
|
|
||||||
m->eby = -bh + gappx;
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
m->by = -bh - gappx;
|
||||||
|
|
||||||
|
if (m->showextrabar) {
|
||||||
|
m->wh -= bh * m->showextrabar;
|
||||||
|
m->eby = m->wy + m->wh;
|
||||||
|
m->wh = m->wh - gappx;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
m->eby = -bh + gappx;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue