wiebel
10 months ago
commit
84c06e3578
91 changed files with 8404 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||
MIT/X Consortium License |
|||
|
|||
© 2006-2019 Anselm R Garbe <anselm@garbe.ca> |
|||
© 2006-2009 Jukka Salmi <jukka at salmi dot ch> |
|||
© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com> |
|||
© 2007-2011 Peter Hartlich <sgkkr at hartlich dot com> |
|||
© 2007-2009 Szabolcs Nagy <nszabolcs at gmail dot com> |
|||
© 2007-2009 Christof Musik <christof at sendfax dot de> |
|||
© 2007-2009 Premysl Hruby <dfenze at gmail dot com> |
|||
© 2007-2008 Enno Gottox Boland <gottox at s01 dot de> |
|||
© 2008 Martin Hurton <martin dot hurton at gmail dot com> |
|||
© 2008 Neale Pickett <neale dot woozle dot org> |
|||
© 2009 Mate Nagy <mnagy at port70 dot net> |
|||
© 2010-2016 Hiltjo Posthuma <hiltjo@codemadness.org> |
|||
© 2010-2012 Connor Lane Smith <cls@lubutu.com> |
|||
© 2011 Christoph Lohmann <20h@r-36.net> |
|||
© 2015-2016 Quentin Rameau <quinq@fifth.space> |
|||
© 2015-2016 Eric Pruitt <eric.pruitt@gmail.com> |
|||
© 2016-2017 Markus Teich <markus.teich@stusta.mhn.de> |
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a |
|||
copy of this software and associated documentation files (the "Software"), |
|||
to deal in the Software without restriction, including without limitation |
|||
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|||
and/or sell copies of the Software, and to permit persons to whom the |
|||
Software is furnished to do so, subject to the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be included in |
|||
all copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|||
DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,69 @@ |
|||
# dwm - dynamic window manager
|
|||
# See LICENSE file for copyright and license details.
|
|||
|
|||
include config.mk |
|||
|
|||
SRC = drw.c dwm.c util.c |
|||
OBJ = ${SRC:.c=.o} |
|||
|
|||
# FreeBSD users, prefix all ifdef, else and endif statements with a . for this to work (e.g. .ifdef)
|
|||
|
|||
ifdef YAJLLIBS |
|||
all: options dwm dwm-msg |
|||
else |
|||
all: options dwm |
|||
endif |
|||
|
|||
options: |
|||
@echo dwm build options: |
|||
@echo "CFLAGS = ${CFLAGS}" |
|||
@echo "LDFLAGS = ${LDFLAGS}" |
|||
@echo "CC = ${CC}" |
|||
|
|||
.c.o: |
|||
${CC} -c ${CFLAGS} $< |
|||
|
|||
${OBJ}: config.h config.mk |
|||
|
|||
config.h: |
|||
cp config.def.h $@ |
|||
|
|||
dwm: ${OBJ} |
|||
${CC} -o $@ ${OBJ} ${LDFLAGS} |
|||
|
|||
ifdef YAJLLIBS |
|||
dwm-msg: |
|||
${CC} -o $@ patch/ipc/dwm-msg.c ${LDFLAGS} |
|||
endif |
|||
|
|||
clean: |
|||
rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz |
|||
rm -f dwm-msg |
|||
|
|||
dist: clean |
|||
mkdir -p dwm-${VERSION} |
|||
cp -R LICENSE Makefile README config.def.h config.mk\
|
|||
dwm.1 drw.h util.h ${SRC} dwm.png transient.c dwm-${VERSION} |
|||
tar -cf dwm-${VERSION}.tar dwm-${VERSION} |
|||
gzip dwm-${VERSION}.tar |
|||
rm -rf dwm-${VERSION} |
|||
|
|||
install: all |
|||
mkdir -p ${DESTDIR}${PREFIX}/bin |
|||
cp -f dwm ${DESTDIR}${PREFIX}/bin |
|||
ifdef YAJLLIBS |
|||
cp -f dwm-msg ${DESTDIR}${PREFIX}/bin |
|||
endif |
|||
chmod 755 ${DESTDIR}${PREFIX}/bin/dwm |
|||
ifdef YAJLLIBS |
|||
chmod 755 ${DESTDIR}${PREFIX}/bin/dwm-msg |
|||
endif |
|||
mkdir -p ${DESTDIR}${MANPREFIX}/man1 |
|||
sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1 |
|||
chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1 |
|||
|
|||
uninstall: |
|||
rm -f ${DESTDIR}${PREFIX}/bin/dwm\
|
|||
${DESTDIR}${MANPREFIX}/man1/dwm.1 |
|||
|
|||
.PHONY: all options clean dist install uninstall |
@ -0,0 +1,48 @@ |
|||
dwm - dynamic window manager |
|||
============================ |
|||
dwm is an extremely fast, small, and dynamic window manager for X. |
|||
|
|||
|
|||
Requirements |
|||
------------ |
|||
In order to build dwm you need the Xlib header files. |
|||
|
|||
|
|||
Installation |
|||
------------ |
|||
Edit config.mk to match your local setup (dwm is installed into |
|||
the /usr/local namespace by default). |
|||
|
|||
Afterwards enter the following command to build and install dwm (if |
|||
necessary as root): |
|||
|
|||
make clean install |
|||
|
|||
|
|||
Running dwm |
|||
----------- |
|||
Add the following line to your .xinitrc to start dwm using startx: |
|||
|
|||
exec dwm |
|||
|
|||
In order to connect dwm to a specific display, make sure that |
|||
the DISPLAY environment variable is set correctly, e.g.: |
|||
|
|||
DISPLAY=foo.bar:1 exec dwm |
|||
|
|||
(This will start dwm on display :1 of the host foo.bar.) |
|||
|
|||
In order to display status info in the bar, you can do something |
|||
like this in your .xinitrc: |
|||
|
|||
while xsetroot -name "`date` `uptime | sed 's/.*,//'`" |
|||
do |
|||
sleep 1 |
|||
done & |
|||
exec dwm |
|||
|
|||
|
|||
Configuration |
|||
------------- |
|||
The configuration of dwm is done by creating a custom config.h |
|||
and (re)compiling the source code. |
@ -0,0 +1,345 @@ |
|||
/* See LICENSE file for copyright and license details. */ |
|||
|
|||
/* appearance */ |
|||
static const unsigned int borderpx = 1; /* border pixel of windows */ |
|||
static const unsigned int snap = 32; /* snap pixel */ |
|||
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ |
|||
static const unsigned int gappih = 20; /* horiz inner gap between windows */ |
|||
static const unsigned int gappiv = 10; /* vert inner gap between windows */ |
|||
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */ |
|||
static const unsigned int gappov = 30; /* vert outer gap between windows and screen edge */ |
|||
static const int smartgaps_fact = 1; /* gap factor when there is only one client; 0 = no gaps, 3 = 3x outer gaps */ |
|||
static const char autostartblocksh[] = "autostart_blocking.sh"; |
|||
static const char autostartsh[] = "autostart.sh"; |
|||
static const char dwmdir[] = "dwm"; |
|||
static const char localshare[] = ".local/share"; |
|||
static const int showbar = 1; /* 0 means no bar */ |
|||
static const int topbar = 1; /* 0 means bottom bar */ |
|||
/* Status is to be shown on: -1 (all monitors), 0 (a specific monitor by index), 'A' (active monitor) */ |
|||
static const int statusmon = 'A'; |
|||
static const unsigned int systrayspacing = 2; /* systray spacing */ |
|||
static const int showsystray = 1; /* 0 means no systray */ |
|||
/* Indicators: see patch/bar_indicators.h for options */ |
|||
static int tagindicatortype = INDICATOR_TOP_LEFT_SQUARE; |
|||
static int tiledindicatortype = INDICATOR_NONE; |
|||
static int floatindicatortype = INDICATOR_TOP_LEFT_SQUARE; |
|||
static int fakefsindicatortype = INDICATOR_PLUS; |
|||
static int floatfakefsindicatortype = INDICATOR_PLUS_AND_LARGER_SQUARE; |
|||
static void (*bartabmonfns[])(Monitor *) = { monocle /* , customlayoutfn */ }; |
|||
static const char *fonts[] = { "monospace:size=10" }; |
|||
static const char dmenufont[] = "monospace:size=10"; |
|||
|
|||
static char c000000[] = "#000000"; // placeholder value
|
|||
|
|||
static char normfgcolor[] = "#bbbbbb"; |
|||
static char normbgcolor[] = "#222222"; |
|||
static char normbordercolor[] = "#444444"; |
|||
static char normfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char selfgcolor[] = "#eeeeee"; |
|||
static char selbgcolor[] = "#005577"; |
|||
static char selbordercolor[] = "#005577"; |
|||
static char selfloatcolor[] = "#005577"; |
|||
|
|||
static char titlenormfgcolor[] = "#bbbbbb"; |
|||
static char titlenormbgcolor[] = "#222222"; |
|||
static char titlenormbordercolor[] = "#444444"; |
|||
static char titlenormfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char titleselfgcolor[] = "#eeeeee"; |
|||
static char titleselbgcolor[] = "#005577"; |
|||
static char titleselbordercolor[] = "#005577"; |
|||
static char titleselfloatcolor[] = "#005577"; |
|||
|
|||
static char tagsnormfgcolor[] = "#bbbbbb"; |
|||
static char tagsnormbgcolor[] = "#222222"; |
|||
static char tagsnormbordercolor[] = "#444444"; |
|||
static char tagsnormfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char tagsselfgcolor[] = "#eeeeee"; |
|||
static char tagsselbgcolor[] = "#005577"; |
|||
static char tagsselbordercolor[] = "#005577"; |
|||
static char tagsselfloatcolor[] = "#005577"; |
|||
|
|||
static char hidnormfgcolor[] = "#005577"; |
|||
static char hidselfgcolor[] = "#227799"; |
|||
static char hidnormbgcolor[] = "#222222"; |
|||
static char hidselbgcolor[] = "#222222"; |
|||
|
|||
static char urgfgcolor[] = "#bbbbbb"; |
|||
static char urgbgcolor[] = "#222222"; |
|||
static char urgbordercolor[] = "#ff0000"; |
|||
static char urgfloatcolor[] = "#db8fd9"; |
|||
|
|||
|
|||
static const unsigned int baralpha = 0xd0; |
|||
static const unsigned int borderalpha = OPAQUE; |
|||
static const unsigned int alphas[][3] = { |
|||
/* fg bg border */ |
|||
[SchemeNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTitleNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTitleSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTagsNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTagsSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeHidNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeHidSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeUrg] = { OPAQUE, baralpha, borderalpha }, |
|||
}; |
|||
|
|||
static char *colors[][ColCount] = { |
|||
/* fg bg border float */ |
|||
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor, normfloatcolor }, |
|||
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor, selfloatcolor }, |
|||
[SchemeTitleNorm] = { titlenormfgcolor, titlenormbgcolor, titlenormbordercolor, titlenormfloatcolor }, |
|||
[SchemeTitleSel] = { titleselfgcolor, titleselbgcolor, titleselbordercolor, titleselfloatcolor }, |
|||
[SchemeTagsNorm] = { tagsnormfgcolor, tagsnormbgcolor, tagsnormbordercolor, tagsnormfloatcolor }, |
|||
[SchemeTagsSel] = { tagsselfgcolor, tagsselbgcolor, tagsselbordercolor, tagsselfloatcolor }, |
|||
[SchemeHidNorm] = { hidnormfgcolor, hidnormbgcolor, c000000, c000000 }, |
|||
[SchemeHidSel] = { hidselfgcolor, hidselbgcolor, c000000, c000000 }, |
|||
[SchemeUrg] = { urgfgcolor, urgbgcolor, urgbordercolor, urgfloatcolor }, |
|||
}; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
/* Tags
|
|||
* In a traditional dwm the number of tags in use can be changed simply by changing the number |
|||
* of strings in the tags array. This build does things a bit different which has some added |
|||
* benefits. If you need to change the number of tags here then change the NUMTAGS macro in dwm.c. |
|||
* |
|||
* Examples: |
|||
* |
|||
* 1) static char *tagicons[][NUMTAGS*2] = { |
|||
* [DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I" }, |
|||
* } |
|||
* |
|||
* 2) static char *tagicons[][1] = { |
|||
* [DEFAULT_TAGS] = { "•" }, |
|||
* } |
|||
* |
|||
* The first example would result in the tags on the first monitor to be 1 through 9, while the |
|||
* tags for the second monitor would be named A through I. A third monitor would start again at |
|||
* 1 through 9 while the tags on a fourth monitor would also be named A through I. Note the tags |
|||
* count of NUMTAGS*2 in the array initialiser which defines how many tag text / icon exists in |
|||
* the array. This can be changed to *3 to add separate icons for a third monitor. |
|||
* |
|||
* For the second example each tag would be represented as a bullet point. Both cases work the |
|||
* same from a technical standpoint - the icon index is derived from the tag index and the monitor |
|||
* index. If the icon index is is greater than the number of tag icons then it will wrap around |
|||
* until it an icon matches. Similarly if there are two tag icons then it would alternate between |
|||
* them. This works seamlessly with alternative tags and alttagsdecoration patches. |
|||
*/ |
|||
static char *tagicons[][NUMTAGS] = { |
|||
[DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }, |
|||
[ALTERNATIVE_TAGS] = { "A", "B", "C", "D", "E", "F", "G", "H", "I" }, |
|||
[ALT_TAGS_DECORATION] = { "<1>", "<2>", "<3>", "<4>", "<5>", "<6>", "<7>", "<8>", "<9>" }, |
|||
}; |
|||
|
|||
|
|||
/* There are two options when it comes to per-client rules:
|
|||
* - a typical struct table or |
|||
* - using the RULE macro |
|||
* |
|||
* A traditional struct table looks like this: |
|||
* // class instance title wintype tags mask isfloating monitor
|
|||
* { "Gimp", NULL, NULL, NULL, 1 << 4, 0, -1 }, |
|||
* { "Firefox", NULL, NULL, NULL, 1 << 7, 0, -1 }, |
|||
* |
|||
* The RULE macro has the default values set for each field allowing you to only |
|||
* specify the values that are relevant for your rule, e.g. |
|||
* |
|||
* RULE(.class = "Gimp", .tags = 1 << 4) |
|||
* RULE(.class = "Firefox", .tags = 1 << 7) |
|||
* |
|||
* Refer to the Rule struct definition for the list of available fields depending on |
|||
* the patches you enable. |
|||
*/ |
|||
static const Rule rules[] = { |
|||
/* xprop(1):
|
|||
* WM_CLASS(STRING) = instance, class |
|||
* WM_NAME(STRING) = title |
|||
* WM_WINDOW_ROLE(STRING) = role |
|||
* _NET_WM_WINDOW_TYPE(ATOM) = wintype |
|||
*/ |
|||
RULE(.wintype = WTYPE "DIALOG", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "UTILITY", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) |
|||
RULE(.class = "Gimp", .tags = 1 << 4) |
|||
RULE(.class = "Firefox", .tags = 1 << 7) |
|||
}; |
|||
|
|||
|
|||
|
|||
/* Bar rules allow you to configure what is shown where on the bar, as well as
|
|||
* introducing your own bar modules. |
|||
* |
|||
* monitor: |
|||
* -1 show on all monitors |
|||
* 0 show on monitor 0 |
|||
* 'A' show on active monitor (i.e. focused / selected) (or just -1 for active?) |
|||
* bar - bar index, 0 is default, 1 is extrabar |
|||
* alignment - how the module is aligned compared to other modules |
|||
* widthfunc, drawfunc, clickfunc - providing bar module width, draw and click functions |
|||
* name - does nothing, intended for visual clue and for logging / debugging |
|||
*/ |
|||
static const BarRule barrules[] = { |
|||
/* monitor bar alignment widthfunc drawfunc clickfunc name */ |
|||
{ 0, 0, BAR_ALIGN_LEFT, width_pwrl_tags, draw_pwrl_tags, click_pwrl_tags, "powerline_tags" }, |
|||
{ -1, 0, BAR_ALIGN_LEFT, width_tags, draw_tags, click_tags, "tags" }, |
|||
{ 0, 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, "systray" }, |
|||
{ -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, "layout" }, |
|||
{ statusmon, 0, BAR_ALIGN_RIGHT, width_status, draw_status, click_statuscmd, "status" }, |
|||
{ -1, 0, BAR_ALIGN_NONE, width_bartabgroups, draw_bartabgroups, click_bartabgroups, "bartabgroups" }, |
|||
}; |
|||
|
|||
/* layout(s) */ |
|||
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 resizehints = 0; /* 1 means respect size hints in tiled resizals */ |
|||
static const int decorhints = 1; /* 1 means respect decoration hints */ |
|||
|
|||
#define FORCE_VSPLIT 1 |
|||
|
|||
|
|||
static const Layout layouts[] = { |
|||
/* symbol arrange function */ |
|||
{ "[]=", tile }, /* first entry is default */ |
|||
{ "><>", NULL }, /* no layout function means floating behavior */ |
|||
{ "[M]", monocle }, |
|||
{ "|M|", centeredmaster }, |
|||
{ ">M>", centeredfloatingmaster }, |
|||
{ "[\\]", dwindle }, |
|||
{ "###", nrowgrid }, |
|||
}; |
|||
|
|||
|
|||
/* key definitions */ |
|||
#define MODKEY Mod1Mask |
|||
#define TAGKEYS(KEY,TAG) \ |
|||
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, |
|||
|
|||
|
|||
|
|||
/* helper for spawning shell commands in the pre dwm-5.0 fashion */ |
|||
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } |
|||
|
|||
/* commands */ |
|||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ |
|||
static const char *dmenucmd[] = { |
|||
"dmenu_run", |
|||
"-m", dmenumon, |
|||
"-fn", dmenufont, |
|||
"-nb", normbgcolor, |
|||
"-nf", normfgcolor, |
|||
"-sb", selbgcolor, |
|||
"-sf", selfgcolor, |
|||
NULL |
|||
}; |
|||
static const char *termcmd[] = { "st", NULL }; |
|||
|
|||
/* This defines the name of the executable that handles the bar (used for signalling purposes) */ |
|||
#define STATUSBAR "dwmblocks" |
|||
|
|||
|
|||
static Key keys[] = { |
|||
/* modifier key function argument */ |
|||
{ MODKEY, XK_p, spawn, {.v = dmenucmd } }, |
|||
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, |
|||
{ MODKEY, XK_b, togglebar, {0} }, |
|||
{ MODKEY, XK_j, focusstack, {.i = +1 } }, |
|||
{ MODKEY, XK_k, focusstack, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_j, inplacerotate, {.i = +2 } }, // same as rotatestack
|
|||
{ MODKEY|Mod4Mask, XK_k, inplacerotate, {.i = -2 } }, // same as reotatestack
|
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_j, inplacerotate, {.i = +1} }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_k, inplacerotate, {.i = -1} }, |
|||
{ MODKEY, XK_i, incnmaster, {.i = +1 } }, |
|||
{ MODKEY, XK_d, incnmaster, {.i = -1 } }, |
|||
{ MODKEY, XK_h, setmfact, {.f = -0.05} }, |
|||
{ MODKEY, XK_l, setmfact, {.f = +0.05} }, |
|||
{ MODKEY, XK_x, transfer, {0} }, |
|||
{ MODKEY, XK_Return, zoom, {0} }, |
|||
{ MODKEY|Mod4Mask, XK_u, incrgaps, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_u, incrgaps, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_i, incrigaps, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_i, incrigaps, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_o, incrogaps, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_o, incrogaps, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_6, incrihgaps, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_6, incrihgaps, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_7, incrivgaps, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_7, incrivgaps, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_8, incrohgaps, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_8, incrohgaps, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_9, incrovgaps, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_9, incrovgaps, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask, XK_0, togglegaps, {0} }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_0, defaultgaps, {0} }, |
|||
{ MODKEY, XK_Tab, view, {0} }, |
|||
{ MODKEY|ControlMask, XK_z, showhideclient, {0} }, |
|||
{ MODKEY|ShiftMask, XK_c, killclient, {0} }, |
|||
{ MODKEY|ShiftMask, XK_q, quit, {0} }, |
|||
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, |
|||
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, |
|||
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, |
|||
{ MODKEY, XK_space, setlayout, {0} }, |
|||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} }, |
|||
{ MODKEY|ShiftMask, XK_y, togglefakefullscreen, {0} }, |
|||
{ MODKEY|ShiftMask, XK_s, togglesticky, {0} }, |
|||
{ MODKEY, XK_minus, scratchpad_show, {0} }, |
|||
{ MODKEY|ShiftMask, XK_minus, scratchpad_hide, {0} }, |
|||
{ MODKEY, XK_equal, scratchpad_remove, {0} }, |
|||
{ MODKEY, XK_comma, focusmon, {.i = -1 } }, |
|||
{ MODKEY, XK_period, focusmon, {.i = +1 } }, |
|||
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, |
|||
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, |
|||
{ MODKEY, XK_Left, viewtoleft, {0} }, // note keybinding conflict with focusdir
|
|||
{ MODKEY, XK_Right, viewtoright, {0} }, // note keybinding conflict with focusdir
|
|||
{ MODKEY|ShiftMask, XK_Left, tagtoleft, {0} }, |
|||
{ MODKEY|ShiftMask, XK_Right, tagtoright, {0} }, |
|||
{ MODKEY|ControlMask, XK_Left, tagandviewtoleft, {0} }, |
|||
{ MODKEY|ControlMask, XK_Right, tagandviewtoright, {0} }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_comma, tagallmon, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ShiftMask, XK_period, tagallmon, {.i = -1 } }, |
|||
{ MODKEY|Mod4Mask|ControlMask, XK_comma, tagswapmon, {.i = +1 } }, |
|||
{ MODKEY|Mod4Mask|ControlMask, XK_period, tagswapmon, {.i = -1 } }, |
|||
TAGKEYS( XK_1, 0) |
|||
TAGKEYS( XK_2, 1) |
|||
TAGKEYS( XK_3, 2) |
|||
TAGKEYS( XK_4, 3) |
|||
TAGKEYS( XK_5, 4) |
|||
TAGKEYS( XK_6, 5) |
|||
TAGKEYS( XK_7, 6) |
|||
TAGKEYS( XK_8, 7) |
|||
TAGKEYS( XK_9, 8) |
|||
}; |
|||
|
|||
|
|||
/* button definitions */ |
|||
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ |
|||
static Button buttons[] = { |
|||
/* click event mask button function argument */ |
|||
{ ClkLtSymbol, 0, Button1, setlayout, {0} }, |
|||
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, |
|||
{ ClkWinTitle, 0, Button1, togglewin, {0} }, |
|||
{ ClkWinTitle, 0, Button3, showhideclient, {0} }, |
|||
{ ClkWinTitle, 0, Button2, zoom, {0} }, |
|||
{ ClkStatusText, 0, Button1, sigstatusbar, {.i = 1 } }, |
|||
{ ClkStatusText, 0, Button2, sigstatusbar, {.i = 2 } }, |
|||
{ ClkStatusText, 0, Button3, sigstatusbar, {.i = 3 } }, |
|||
{ ClkClientWin, MODKEY, Button1, movemouse, {0} }, |
|||
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} }, |
|||
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} }, |
|||
{ ClkTagBar, 0, Button1, view, {0} }, |
|||
{ ClkTagBar, 0, Button3, toggleview, {0} }, |
|||
{ ClkTagBar, MODKEY, Button1, tag, {0} }, |
|||
{ ClkTagBar, MODKEY, Button3, toggletag, {0} }, |
|||
}; |
|||
|
|||
|
|||
|
@ -0,0 +1,416 @@ |
|||
/* See LICENSE file for copyright and license details. */ |
|||
|
|||
/* appearance */ |
|||
static const unsigned int borderpx = 2; /* border pixel of windows */ |
|||
static const unsigned int snap = 16; /* snap pixel */ |
|||
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ |
|||
static const unsigned int gappih = 10; /* horiz inner gap between windows */ |
|||
static const unsigned int gappiv = 10; /* vert inner gap between windows */ |
|||
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */ |
|||
static const unsigned int gappov = 10; /* vert outer gap between windows and screen edge */ |
|||
static const int smartgaps_fact = 0; /* 1 means no outer gap when there is only one window */ |
|||
static const char autostartblocksh[] = "autostart_blocking.sh"; |
|||
static const char autostartsh[] = "autostart.sh"; |
|||
static const char dwmdir[] = "dwm"; |
|||
static const char localshare[] = ".local/share"; |
|||
static const int showbar = 1; /* 0 means no bar */ |
|||
static const int topbar = 1; /* 0 means bottom bar */ |
|||
/* Status is to be shown on: -1 (all monitors), 0 (a specific monitor by index), 'A' (active monitor) */ |
|||
static const int statusmon = 'A'; |
|||
static const unsigned int systrayspacing = 2; /* systray spacing */ |
|||
static const int showsystray = 1; /* 0 means no systray */ |
|||
/* Indicators: see patch/bar_indicators.h for options */ |
|||
static int tagindicatortype = INDICATOR_TOP_LEFT_SQUARE; |
|||
static int tiledindicatortype = INDICATOR_NONE; |
|||
static int floatindicatortype = INDICATOR_TOP_LEFT_SQUARE; |
|||
static int fakefsindicatortype = INDICATOR_PLUS; |
|||
static int floatfakefsindicatortype = INDICATOR_PLUS_AND_LARGER_SQUARE; |
|||
static void (*bartabmonfns[])(Monitor *) = { monocle /* , customlayoutfn */ }; |
|||
static const char *fonts[] = { |
|||
"FontAwesome:size=12", |
|||
"mononoki:size=12", |
|||
}; |
|||
static const char dmenufont[] = "mononoki:size=12"; |
|||
|
|||
static char normfgcolor[] = "#bbbbbb"; |
|||
static char normbgcolor[] = "#222222"; |
|||
static char normbordercolor[] = "#444444"; |
|||
static char normfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char selfgcolor[] = "#111111"; |
|||
static char selbgcolor[] = "#ffd700"; |
|||
static char selbordercolor[] = "#ffd700"; |
|||
static char selfloatcolor[] = "#ffd700"; |
|||
|
|||
static char titlenormfgcolor[] = "#bbbbbb"; |
|||
static char titlenormbgcolor[] = "#222222"; |
|||
static char titlenormbordercolor[] = "#444444"; |
|||
static char titlenormfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char titleselfgcolor[] = "#111111"; |
|||
static char titleselbgcolor[] = "#ffd700"; |
|||
static char titleselbordercolor[] = "#ffd700"; |
|||
static char titleselfloatcolor[] = "#ffd700"; |
|||
|
|||
static char tagsnormfgcolor[] = "#bbbbbb"; |
|||
static char tagsnormbgcolor[] = "#222222"; |
|||
static char tagsnormbordercolor[] = "#444444"; |
|||
static char tagsnormfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char tagsselfgcolor[] = "#111111"; |
|||
static char tagsselbgcolor[] = "#ffd700"; |
|||
static char tagsselbordercolor[] = "#ffd700"; |
|||
static char tagsselfloatcolor[] = "#ffd700"; |
|||
|
|||
static char hidnormfgcolor[] = "#ffd700"; |
|||
static char hidnormbgcolor[] = "#222222"; |
|||
static char hidselfgcolor[] = "#ffd700"; |
|||
static char hidselbgcolor[] = "#ffd700"; |
|||
static char hidbordercolor[] = "#ffd700"; |
|||
static char hidfloatcolor[] = "#f76e0c"; |
|||
|
|||
static char urgfgcolor[] = "#bbbbbb"; |
|||
static char urgbgcolor[] = "#222222"; |
|||
static char urgbordercolor[] = "#ff0000"; |
|||
static char urgfloatcolor[] = "#db8fd9"; |
|||
|
|||
|
|||
static const unsigned int baralpha = 0xd0; |
|||
static const unsigned int borderalpha = OPAQUE; |
|||
static const unsigned int alphas[][3] = { |
|||
/* fg bg border */ |
|||
[SchemeNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTitleNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTitleSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTagsNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTagsSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeHidNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeHidSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeUrg] = { OPAQUE, baralpha, borderalpha }, |
|||
}; |
|||
|
|||
static char *colors[][ColCount] = { |
|||
/* fg bg border float */ |
|||
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor, normfloatcolor }, |
|||
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor, selfloatcolor }, |
|||
[SchemeTitleNorm] = { titlenormfgcolor, titlenormbgcolor, titlenormbordercolor, titlenormfloatcolor }, |
|||
[SchemeTitleSel] = { titleselfgcolor, titleselbgcolor, titleselbordercolor, titleselfloatcolor }, |
|||
[SchemeTagsNorm] = { tagsnormfgcolor, tagsnormbgcolor, tagsnormbordercolor, tagsnormfloatcolor }, |
|||
[SchemeTagsSel] = { tagsselfgcolor, tagsselbgcolor, tagsselbordercolor, tagsselfloatcolor }, |
|||
[SchemeHidNorm] = { hidnormfgcolor, hidnormbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeHidSel] = { hidselfgcolor, hidselbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeUrg] = { urgfgcolor, urgbgcolor, urgbordercolor, urgfloatcolor }, |
|||
}; |
|||
|
|||
/*
|
|||
static char *statuscolors[][ColCount] = { |
|||
// fg bg border float
|
|||
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor, normfloatcolor }, |
|||
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor, selfloatcolor }, |
|||
[SchemeTitleNorm] = { titlenormfgcolor, titlenormbgcolor, titlenormbordercolor, titlenormfloatcolor }, |
|||
[SchemeTitleSel] = { titleselfgcolor, titleselbgcolor, titleselbordercolor, titleselfloatcolor }, |
|||
[SchemeTagsNorm] = { tagsnormfgcolor, tagsnormbgcolor, tagsnormbordercolor, tagsnormfloatcolor }, |
|||
[SchemeTagsSel] = { tagsselfgcolor, tagsselbgcolor, tagsselbordercolor, tagsselfloatcolor }, |
|||
[SchemeHidNorm] = { hidnormfgcolor, hidnormbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeHidSel] = { hidselfgcolor, hidselbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeUrg] = { urgfgcolor, urgbgcolor, urgbordercolor, urgfloatcolor }, |
|||
}; |
|||
*/ |
|||
|
|||
|
|||
|
|||
/* Tags
|
|||
* In a traditional dwm the number of tags in use can be changed simply by changing the number |
|||
* of strings in the tags array. This build does things a bit different which has some added |
|||
* benefits. If you need to change the number of tags here then change the NUMTAGS macro in dwm.c. |
|||
* |
|||
* Examples: |
|||
* |
|||
* 1) static char *tagicons[][NUMTAGS*2] = { |
|||
* [DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I" }, |
|||
* } |
|||
* |
|||
* 2) static char *tagicons[][1] = { |
|||
* [DEFAULT_TAGS] = { "•" }, |
|||
* } |
|||
* |
|||
* The first example would result in the tags on the first monitor to be 1 through 9, while the |
|||
* tags for the second monitor would be named A through I. A third monitor would start again at |
|||
* 1 through 9 while the tags on a fourth monitor would also be named A through I. Note the tags |
|||
* count of NUMTAGS*2 in the array initialiser which defines how many tag text / icon exists in |
|||
* the array. This can be changed to *3 to add separate icons for a third monitor. |
|||
* |
|||
* For the second example each tag would be represented as a bullet point. Both cases work the |
|||
* same from a technical standpoint - the icon index is derived from the tag index and the monitor |
|||
* index. If the icon index is is greater than the number of tag icons then it will wrap around |
|||
* until it an icon matches. Similarly if there are two tag icons then it would alternate between |
|||
* them. This works seamlessly with alternative tags and alttagsdecoration patches. |
|||
*/ |
|||
static char *tagicons[][NUMTAGS] = { |
|||
// [DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" },
|
|||
[DEFAULT_TAGS] = { "₁", "₂", "₃", "₄", "₅", "₆", "₇", "₈", "₉" }, |
|||
[ALTERNATIVE_TAGS] = { "A", "B", "C", "D", "E", "F", "G", "H", "I" }, |
|||
[ALT_TAGS_DECORATION] = { "<1>", "<2>", "<3>", "<4>", "<5>", "<6>", "<7>", "<8>", "<9>" }, |
|||
}; |
|||
|
|||
|
|||
|
|||
|
|||
/* There are two options when it comes to per-client rules:
|
|||
* - a typical struct table or |
|||
* - using the RULE macro |
|||
* |
|||
* A traditional struct table looks like this: |
|||
* // class instance title wintype tags mask isfloating monitor
|
|||
* { "Gimp", NULL, NULL, NULL, 1 << 4, 0, -1 }, |
|||
* { "Firefox", NULL, NULL, NULL, 1 << 7, 0, -1 }, |
|||
* |
|||
* The RULE macro has the default values set for each field allowing you to only |
|||
* specify the values that are relevant for your rule, e.g. |
|||
* |
|||
* RULE(.class = "Gimp", .tags = 1 << 4) |
|||
* RULE(.class = "Firefox", .tags = 1 << 7) |
|||
* |
|||
* Refer to the Rule struct definition for the list of available fields depending on |
|||
* the patches you enable. |
|||
*/ |
|||
static const Rule rules[] = { |
|||
/* xprop(1):
|
|||
* WM_CLASS(STRING) = instance, class |
|||
* WM_NAME(STRING) = title |
|||
* WM_WINDOW_ROLE(STRING) = role |
|||
* _NET_WM_WINDOW_TYPE(ATOM) = wintype |
|||
*/ |
|||
RULE(.wintype = WTYPE "DIALOG", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "UTILITY", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) |
|||
RULE(.instance= "main", .class = "Psi+", .tags = 1 << 3) |
|||
RULE(.instance= "tabs", .class = "Psi+", .tags = 1 << 3) |
|||
RULE(.class = "Claws-mail", .tags = 1 << 3) |
|||
RULE(.class = "Zoiper", .tags = 1 << 3) |
|||
RULE(.class = "linphone", .tags = 1 << 3) |
|||
RULE(.class = "Skype", .tags = 1 << 3) |
|||
RULE(.class = "Mattermost", .tags = 1 << 3) |
|||
|
|||
RULE(.class = "pinentry-qt", .isfloating = 1) |
|||
RULE(.class = "pinentry-qt5", .isfloating = 1) |
|||
RULE(.class = "Nm-connection-editor", .isfloating = 1) |
|||
RULE(.class = "pavucontrol-qt", .isfloating = 0) |
|||
RULE(.class = "Firefox", .wintype = WTYPE "NORMAL", .tags = 1 << 2) |
|||
|
|||
RULE(.class = "Spotify", .tags = 1 << 8) |
|||
RULE(.class = "Kasts", .tags = 1 << 8) |
|||
|
|||
RULE(.class = "st-tilda", .isfloating = 1) |
|||
RULE(.class = "st-256color", .isterminal = 1) |
|||
}; |
|||
|
|||
|
|||
|
|||
/* Bar rules allow you to configure what is shown where on the bar, as well as
|
|||
* introducing your own bar modules. |
|||
* |
|||
* monitor: |
|||
* -1 show on all monitors |
|||
* 0 show on monitor 0 |
|||
* 'A' show on active monitor (i.e. focused / selected) (or just -1 for active?) |
|||
* bar - bar index, 0 is default, 1 is extrabar |
|||
* alignment - how the module is aligned compared to other modules |
|||
* widthfunc, drawfunc, clickfunc - providing bar module width, draw and click functions |
|||
* name - does nothing, intended for visual clue and for logging / debugging |
|||
*/ |
|||
static const BarRule barrules[] = { |
|||
/* monitor bar alignment widthfunc drawfunc clickfunc name */ |
|||
{ -1, 0, BAR_ALIGN_LEFT, width_pwrl_tags, draw_pwrl_tags, click_pwrl_tags, "powerline_tags" }, |
|||
//{ -1, 0, BAR_ALIGN_LEFT, width_tags, draw_tags, click_tags, "tags" },
|
|||
{ 'A', 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, "systray" }, |
|||
{ -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, "layout" }, |
|||
// { 'A', 0, BAR_ALIGN_RIGHT, width_pwrl_status, draw_pwrl_status, click_pwrl_status, "powerline_status" },
|
|||
{ statusmon, 0, BAR_ALIGN_RIGHT, width_status, draw_status, click_statuscmd, "status" }, |
|||
{ -1, 0, BAR_ALIGN_NONE, width_bartabgroups, draw_bartabgroups, click_bartabgroups, "bartabgroups" }, |
|||
}; |
|||
|
|||
/* layout(s) */ |
|||
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 resizehints = 0; /* 1 means respect size hints in tiled resizals */ |
|||
static const int decorhints = 1; /* 1 means respect decoration hints */ |
|||
|
|||
#define FORCE_VSPLIT 1 |
|||
|
|||
|
|||
static const Layout layouts[] = { |
|||
/* symbol arrange function */ |
|||
{ "[]=", tile }, /* first entry is default */ |
|||
{ "><>", NULL }, /* no layout function means floating behavior */ |
|||
{ "[M]", monocle }, |
|||
{ "|M|", centeredmaster }, |
|||
{ ">M>", centeredfloatingmaster }, |
|||
{ "[\\]", dwindle }, |
|||
{ "###", nrowgrid }, |
|||
}; |
|||
|
|||
|
|||
/* key definitions */ |
|||
#define MODKEY Mod4Mask |
|||
#define AltMask Mod1Mask |
|||
#define ALTKEY Mod1Mask |
|||
#define TAGKEYS(KEY,TAG) \ |
|||
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, |
|||
|
|||
|
|||
|
|||
/* helper for spawning shell commands in the pre dwm-5.0 fashion */ |
|||
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } |
|||
|
|||
/* commands */ |
|||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ |
|||
static const char *dmenucmd[] = { |
|||
"dmenu_run", |
|||
"-m", dmenumon, |
|||
"-fn", dmenufont, |
|||
"-nb", normbgcolor, |
|||
"-nf", normfgcolor, |
|||
"-sb", selbgcolor, |
|||
"-sf", selfgcolor, |
|||
NULL |
|||
}; |
|||
static const char *termcmd[] = { "st", NULL }; |
|||
static const char *tmuxcmd[] = { "st", "-c", "st-tmux", "-e", "/home/wiebel/sync/bin/tmux-spawn.sh", NULL }; |
|||
// static const char scratchpadname[] = "tilda";
|
|||
/* static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL }; */ |
|||
// static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-c", "st-tilda", "-g", "180x18", "-e", "tmux", "new-session", "-A", "-s", "tilda", NULL };
|
|||
|
|||
static const char *volup[] = { "/opt/pavolume/pavolume", "volup", "10", NULL }; |
|||
static const char *voldn[] = { "/opt/pavolume/pavolume", "voldown", "10", NULL }; |
|||
static const char *volmute[] = { "/opt/pavolume/pavolume", "mutetoggle", NULL }; |
|||
static const char *playpause[] = { "/usr/bin/playerctl", "play-pause", NULL }; |
|||
#include <X11/XF86keysym.h> |
|||
|
|||
/* This defines the name of the executable that handles the bar (used for signalling purposes) */ |
|||
#define STATUSBAR "dwmblocks" |
|||
|
|||
|
|||
static Key keys[] = { |
|||
/* modifier key function argument */ |
|||
{ MODKEY, XK_p, spawn, {.v = dmenucmd } }, |
|||
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = tmuxcmd } }, |
|||
{ MODKEY|ControlMask, XK_Return, spawn, {.v = termcmd } }, |
|||
{ MODKEY, XK_b, togglebar, {0} }, |
|||
{ MODKEY|ControlMask, XK_s, spawn, SHCMD("transset -a --dec .1") }, |
|||
{ MODKEY|ControlMask, XK_d, spawn, SHCMD("transset -a --inc .1") }, |
|||
{ ALTKEY, XK_w, spawn, SHCMD("pass-wrapper.sh") }, |
|||
{ MODKEY, XK_n, spawn, SHCMD("networkmanager_dmenu") }, |
|||
// { MODKEY, XK_grave, spawn, SHCMD("/home/wiebel/sync/bin/st-tilda.sh") },
|
|||
{ ALTKEY|ControlMask, XK_l, spawn, SHCMD("/usr/local/bin/lock.me") }, |
|||
/* Media Keys */ |
|||
{ 0, XF86XK_MonBrightnessUp, spawn, SHCMD("xbacklight -inc 5") }, |
|||
{ 0, XF86XK_MonBrightnessDown, spawn, SHCMD("xbacklight -dec 5") }, |
|||
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = volup } }, |
|||
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = voldn } }, |
|||
{ 0, XF86XK_AudioMute, spawn, {.v = volmute } }, |
|||
{ 0, XF86XK_AudioPlay, spawn, {.v = playpause } }, |
|||
{ MODKEY, XK_j, focusstack, {.i = +1 } }, |
|||
{ MODKEY, XK_k, focusstack, {.i = -1 } }, |
|||
{ MODKEY|ShiftMask, XK_j, inplacerotate, {.i = +1} }, |
|||
{ MODKEY|ShiftMask, XK_k, inplacerotate, {.i = -1} }, |
|||
{ MODKEY, XK_i, incnmaster, {.i = +1 } }, |
|||
{ MODKEY, XK_d, incnmaster, {.i = -1 } }, |
|||
{ MODKEY, XK_h, setmfact, {.f = -0.05} }, |
|||
{ MODKEY, XK_l, setmfact, {.f = +0.05} }, |
|||
{ MODKEY, XK_x, transfer, {0} }, |
|||
{ MODKEY, XK_Return, zoom, {0} }, |
|||
// { MODKEY|AltMask, XK_u, incrgaps, {.i = +1 } },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_u, incrgaps, {.i = -1 } },
|
|||
// { MODKEY|AltMask, XK_i, incrigaps, {.i = +1 } },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_i, incrigaps, {.i = -1 } },
|
|||
// { MODKEY|AltMask, XK_o, incrogaps, {.i = +1 } },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_o, incrogaps, {.i = -1 } },
|
|||
// { MODKEY|AltMask, XK_6, incrihgaps, {.i = +1 } },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_6, incrihgaps, {.i = -1 } },
|
|||
// { MODKEY|AltMask, XK_7, incrivgaps, {.i = +1 } },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_7, incrivgaps, {.i = -1 } },
|
|||
// { MODKEY|AltMask, XK_8, incrohgaps, {.i = +1 } },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_8, incrohgaps, {.i = -1 } },
|
|||
// { MODKEY|AltMask, XK_9, incrovgaps, {.i = +1 } },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_9, incrovgaps, {.i = -1 } },
|
|||
// { MODKEY|AltMask, XK_0, togglegaps, {0} },
|
|||
// { MODKEY|AltMask|ShiftMask, XK_0, defaultgaps, {0} },
|
|||
{ MODKEY, XK_Tab, view, {0} }, |
|||
{ MODKEY|ControlMask, XK_z, showhideclient, {0} }, |
|||
{ MODKEY, XK_q, killclient, {0} }, |
|||
{ MODKEY|ShiftMask, XK_c, killclient, {0} }, |
|||
{ MODKEY|ShiftMask, XK_q, quit, {0} }, |
|||
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, |
|||
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, |
|||
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, |
|||
{ MODKEY, XK_u, setlayout, {.v = &layouts[3]} }, |
|||
{ MODKEY, XK_o, setlayout, {.v = &layouts[4]} }, |
|||
{ MODKEY|ShiftMask, XK_t, setlayout, {.v = &layouts[5]} }, |
|||
{ MODKEY, XK_g, setlayout, {.v = &layouts[6]} }, |
|||
{ MODKEY, XK_space, setlayout, {0} }, |
|||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} }, |
|||
{ MODKEY|ShiftMask, XK_y, togglefakefullscreen, {0} }, |
|||
{ MODKEY|ShiftMask, XK_s, togglesticky, {0} }, |
|||
{ MODKEY, XK_grave, scratchpad_show, {0} }, |
|||
{ MODKEY, XK_Escape, scratchpad_show, {0} }, |
|||
{ MODKEY|ShiftMask, XK_grave, scratchpad_hide, {0} }, |
|||
{ MODKEY|ShiftMask, XK_Escape, scratchpad_hide, {0} }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_grave, scratchpad_remove, {0} }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_Escape, scratchpad_remove, {0} }, |
|||
{ MODKEY, XK_comma, focusmon, {.i = -1 } }, |
|||
{ MODKEY, XK_period, focusmon, {.i = +1 } }, |
|||
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, |
|||
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, |
|||
{ MODKEY, XK_Left, viewtoleft, {0} }, |
|||
{ MODKEY, XK_Right, viewtoright, {0} }, |
|||
{ MODKEY|ShiftMask, XK_Left, tagtoleft, {0} }, |
|||
{ MODKEY|ShiftMask, XK_Right, tagtoright, {0} }, |
|||
{ MODKEY|ControlMask, XK_Left, tagandviewtoleft, {0} }, |
|||
{ MODKEY|ControlMask, XK_Right, tagandviewtoright, {0} }, |
|||
{ MODKEY|ControlMask, XK_comma, tagallmon, {.i = +1 } }, |
|||
{ MODKEY|ControlMask, XK_period, tagallmon, {.i = -1 } }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_comma, tagswapmon, {.i = +1 } }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_period, tagswapmon, {.i = -1 } }, |
|||
|
|||
{ MODKEY, XK_0, view, {.ui = ~0 } }, |
|||
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, |
|||
TAGKEYS( XK_1, 0) |
|||
TAGKEYS( XK_2, 1) |
|||
TAGKEYS( XK_3, 2) |
|||
TAGKEYS( XK_4, 3) |
|||
TAGKEYS( XK_5, 4) |
|||
TAGKEYS( XK_6, 5) |
|||
TAGKEYS( XK_7, 6) |
|||
TAGKEYS( XK_8, 7) |
|||
TAGKEYS( XK_9, 8) |
|||
}; |
|||
|
|||
|
|||
/* button definitions */ |
|||
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ |
|||
static Button buttons[] = { |
|||
/* click event mask button function argument */ |
|||
{ ClkLtSymbol, 0, Button1, setlayout, {0} }, |
|||
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, |
|||
{ ClkWinTitle, 0, Button1, togglewin, {0} }, |
|||
{ ClkWinTitle, 0, Button3, showhideclient, {0} }, |
|||
{ ClkWinTitle, 0, Button2, zoom, {0} }, |
|||
{ ClkStatusText, 0, Button1, sigstatusbar, {.i = 1 } }, |
|||
{ ClkStatusText, 0, Button2, sigstatusbar, {.i = 2 } }, |
|||
{ ClkStatusText, 0, Button3, sigstatusbar, {.i = 3 } }, |
|||
{ ClkClientWin, MODKEY, Button1, movemouse, {0} }, |
|||
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} }, |
|||
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} }, |
|||
{ ClkTagBar, 0, Button1, view, {0} }, |
|||
{ ClkTagBar, 0, Button3, toggleview, {0} }, |
|||
{ ClkTagBar, MODKEY, Button1, tag, {0} }, |
|||
{ ClkTagBar, MODKEY, Button3, toggletag, {0} }, |
|||
}; |
|||
|
|||
|
@ -0,0 +1,416 @@ |
|||
/* See LICENSE file for copyright and license details. */ |
|||
|
|||
/* appearance */ |
|||
static const unsigned int borderpx = 2; /* border pixel of windows */ |
|||
static const unsigned int snap = 16; /* snap pixel */ |
|||
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ |
|||
static const unsigned int gappih = 10; /* horiz inner gap between windows */ |
|||
static const unsigned int gappiv = 10; /* vert inner gap between windows */ |
|||
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */ |
|||
static const unsigned int gappov = 10; /* vert outer gap between windows and screen edge */ |
|||
static const int smartgaps_fact = 0; /* 1 means no outer gap when there is only one window */ |
|||
static const char autostartblocksh[] = "autostart_blocking.sh"; |
|||
static const char autostartsh[] = "autostart.sh"; |
|||
static const char dwmdir[] = "dwm"; |
|||
static const char localshare[] = ".local/share"; |
|||
static const int showbar = 1; /* 0 means no bar */ |
|||
static const int topbar = 1; /* 0 means bottom bar */ |
|||
/* Status is to be shown on: -1 (all monitors), 0 (a specific monitor by index), 'A' (active monitor) */ |
|||
static const int statusmon = 'A'; |
|||
static const unsigned int systrayspacing = 2; /* systray spacing */ |
|||
static const int showsystray = 1; /* 0 means no systray */ |
|||
/* Indicators: see patch/bar_indicators.h for options */ |
|||
static int tagindicatortype = INDICATOR_TOP_LEFT_SQUARE; |
|||
static int tiledindicatortype = INDICATOR_NONE; |
|||
static int floatindicatortype = INDICATOR_TOP_LEFT_SQUARE; |
|||
static int fakefsindicatortype = INDICATOR_PLUS; |
|||
static int floatfakefsindicatortype = INDICATOR_PLUS_AND_LARGER_SQUARE; |
|||
static void (*bartabmonfns[])(Monitor *) = { monocle /* , customlayoutfn */ }; |
|||
static const char *fonts[] = { |
|||
"FontAwesome:size=12", |
|||
"mononoki:size=12", |
|||
}; |
|||
static const char dmenufont[] = "mononoki:size=12"; |
|||
|
|||
static char normfgcolor[] = "#bbbbbb"; |
|||
static char normbgcolor[] = "#222222"; |
|||
static char normbordercolor[] = "#444444"; |
|||
static char normfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char selfgcolor[] = "#111111"; |
|||
static char selbgcolor[] = "#ffd700"; |
|||
static char selbordercolor[] = "#ffd700"; |
|||
static char selfloatcolor[] = "#ffd700"; |
|||
|
|||
static char titlenormfgcolor[] = "#bbbbbb"; |
|||
static char titlenormbgcolor[] = "#222222"; |
|||
static char titlenormbordercolor[] = "#444444"; |
|||
static char titlenormfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char titleselfgcolor[] = "#111111"; |
|||
static char titleselbgcolor[] = "#ffd700"; |
|||
static char titleselbordercolor[] = "#ffd700"; |
|||
static char titleselfloatcolor[] = "#ffd700"; |
|||
|
|||
static char tagsnormfgcolor[] = "#bbbbbb"; |
|||
static char tagsnormbgcolor[] = "#222222"; |
|||
static char tagsnormbordercolor[] = "#444444"; |
|||
static char tagsnormfloatcolor[] = "#db8fd9"; |
|||
|
|||
static char tagsselfgcolor[] = "#111111"; |
|||
static char tagsselbgcolor[] = "#ffd700"; |
|||
static char tagsselbordercolor[] = "#ffd700"; |
|||
static char tagsselfloatcolor[] = "#ffd700"; |
|||
|
|||
static char hidnormfgcolor[] = "#ffd700"; |
|||
static char hidnormbgcolor[] = "#222222"; |
|||
static char hidselfgcolor[] = "#ffd700"; |
|||
static char hidselbgcolor[] = "#ffd700"; |
|||
static char hidbordercolor[] = "#ffd700"; |
|||
static char hidfloatcolor[] = "#f76e0c"; |
|||
|
|||
static char urgfgcolor[] = "#bbbbbb"; |
|||
static char urgbgcolor[] = "#222222"; |
|||
static char urgbordercolor[] = "#ff0000"; |
|||
static char urgfloatcolor[] = "#db8fd9"; |
|||
|
|||
|
|||
static const unsigned int baralpha = 0xd0; |
|||
static const unsigned int borderalpha = OPAQUE; |
|||
static const unsigned int alphas[][3] = { |
|||
/* fg bg border */ |
|||
[SchemeNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTitleNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTitleSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTagsNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeTagsSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeHidNorm] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeHidSel] = { OPAQUE, baralpha, borderalpha }, |
|||
[SchemeUrg] = { OPAQUE, baralpha, borderalpha }, |
|||
}; |
|||
|
|||
static char *colors[][ColCount] = { |
|||
/* fg bg border float */ |
|||
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor, normfloatcolor }, |
|||
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor, selfloatcolor }, |
|||
[SchemeTitleNorm] = { titlenormfgcolor, titlenormbgcolor, titlenormbordercolor, titlenormfloatcolor }, |
|||
[SchemeTitleSel] = { titleselfgcolor, titleselbgcolor, titleselbordercolor, titleselfloatcolor }, |
|||
[SchemeTagsNorm] = { tagsnormfgcolor, tagsnormbgcolor, tagsnormbordercolor, tagsnormfloatcolor }, |
|||
[SchemeTagsSel] = { tagsselfgcolor, tagsselbgcolor, tagsselbordercolor, tagsselfloatcolor }, |
|||
[SchemeHidNorm] = { hidnormfgcolor, hidnormbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeHidSel] = { hidselfgcolor, hidselbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeUrg] = { urgfgcolor, urgbgcolor, urgbordercolor, urgfloatcolor }, |
|||
}; |
|||
|
|||
/* |
|||
static char *statuscolors[][ColCount] = { |
|||
// fg bg border float |
|||
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor, normfloatcolor }, |
|||
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor, selfloatcolor }, |
|||
[SchemeTitleNorm] = { titlenormfgcolor, titlenormbgcolor, titlenormbordercolor, titlenormfloatcolor }, |
|||
[SchemeTitleSel] = { titleselfgcolor, titleselbgcolor, titleselbordercolor, titleselfloatcolor }, |
|||
[SchemeTagsNorm] = { tagsnormfgcolor, tagsnormbgcolor, tagsnormbordercolor, tagsnormfloatcolor }, |
|||
[SchemeTagsSel] = { tagsselfgcolor, tagsselbgcolor, tagsselbordercolor, tagsselfloatcolor }, |
|||
[SchemeHidNorm] = { hidnormfgcolor, hidnormbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeHidSel] = { hidselfgcolor, hidselbgcolor, hidbordercolor, hidfloatcolor }, |
|||
[SchemeUrg] = { urgfgcolor, urgbgcolor, urgbordercolor, urgfloatcolor }, |
|||
}; |
|||
*/ |
|||
|
|||
|
|||
|
|||
/* Tags |
|||
* In a traditional dwm the number of tags in use can be changed simply by changing the number |
|||
* of strings in the tags array. This build does things a bit different which has some added |
|||
* benefits. If you need to change the number of tags here then change the NUMTAGS macro in dwm.c. |
|||
* |
|||
* Examples: |
|||
* |
|||
* 1) static char *tagicons[][NUMTAGS*2] = { |
|||
* [DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I" }, |
|||
* } |
|||
* |
|||
* 2) static char *tagicons[][1] = { |
|||
* [DEFAULT_TAGS] = { "•" }, |
|||
* } |
|||
* |
|||
* The first example would result in the tags on the first monitor to be 1 through 9, while the |
|||
* tags for the second monitor would be named A through I. A third monitor would start again at |
|||
* 1 through 9 while the tags on a fourth monitor would also be named A through I. Note the tags |
|||
* count of NUMTAGS*2 in the array initialiser which defines how many tag text / icon exists in |
|||
* the array. This can be changed to *3 to add separate icons for a third monitor. |
|||
* |
|||
* For the second example each tag would be represented as a bullet point. Both cases work the |
|||
* same from a technical standpoint - the icon index is derived from the tag index and the monitor |
|||
* index. If the icon index is is greater than the number of tag icons then it will wrap around |
|||
* until it an icon matches. Similarly if there are two tag icons then it would alternate between |
|||
* them. This works seamlessly with alternative tags and alttagsdecoration patches. |
|||
*/ |
|||
static char *tagicons[][NUMTAGS] = { |
|||
// [DEFAULT_TAGS] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }, |
|||
[DEFAULT_TAGS] = { "₁", "₂", "₃", "₄", "₅", "₆", "₇", "₈", "₉" }, |
|||
[ALTERNATIVE_TAGS] = { "A", "B", "C", "D", "E", "F", "G", "H", "I" }, |
|||
[ALT_TAGS_DECORATION] = { "<1>", "<2>", "<3>", "<4>", "<5>", "<6>", "<7>", "<8>", "<9>" }, |
|||
}; |
|||
|
|||
|
|||
|
|||
|
|||
/* There are two options when it comes to per-client rules: |
|||
* - a typical struct table or |
|||
* - using the RULE macro |
|||
* |
|||
* A traditional struct table looks like this: |
|||
* // class instance title wintype tags mask isfloating monitor |
|||
* { "Gimp", NULL, NULL, NULL, 1 << 4, 0, -1 }, |
|||
* { "Firefox", NULL, NULL, NULL, 1 << 7, 0, -1 }, |
|||
* |
|||
* The RULE macro has the default values set for each field allowing you to only |
|||
* specify the values that are relevant for your rule, e.g. |
|||
* |
|||
* RULE(.class = "Gimp", .tags = 1 << 4) |
|||
* RULE(.class = "Firefox", .tags = 1 << 7) |
|||
* |
|||
* Refer to the Rule struct definition for the list of available fields depending on |
|||
* the patches you enable. |
|||
*/ |
|||
static const Rule rules[] = { |
|||
/* xprop(1): |
|||
* WM_CLASS(STRING) = instance, class |
|||
* WM_NAME(STRING) = title |
|||
* WM_WINDOW_ROLE(STRING) = role |
|||
* _NET_WM_WINDOW_TYPE(ATOM) = wintype |
|||
*/ |
|||
RULE(.wintype = WTYPE "DIALOG", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "UTILITY", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) |
|||
RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) |
|||
RULE(.instance= "main", .class = "Psi+", .tags = 1 << 2) |
|||
RULE(.instance= "tabs", .class = "Psi+", .tags = 1 << 2) |
|||
RULE(.class = "Claws-mail", .tags = 1 << 2) |
|||
RULE(.class = "Zoiper", .tags = 1 << 2) |
|||
RULE(.class = "linphone", .tags = 1 << 2) |
|||
RULE(.class = "Skype", .tags = 1 << 2) |
|||
RULE(.class = "Mattermost", .tags = 1 << 2) |
|||
|
|||
RULE(.class = "pinentry-qt", .isfloating = 1) |
|||
RULE(.class = "pinentry-qt5", .isfloating = 1) |
|||
RULE(.class = "Nm-connection-editor", .isfloating = 1) |
|||
RULE(.class = "pavucontrol-qt", .isfloating = 0) |
|||
RULE(.class = "Gimp", .tags = 1 << 4) |
|||
RULE(.class = "Firefox", .wintype = WTYPE "NORMAL", .tags = 1 << 1) |
|||
|
|||
RULE(.class = "Spotify", .tags = 1 << 7) |
|||
|
|||
RULE(.class = "st-tilda", .isfloating = 1) |
|||
RULE(.class = "st-256color", .isterminal = 1) |
|||
}; |
|||
|
|||
|
|||
|
|||
/* Bar rules allow you to configure what is shown where on the bar, as well as |
|||
* introducing your own bar modules. |
|||
* |
|||
* monitor: |
|||
* -1 show on all monitors |
|||
* 0 show on monitor 0 |
|||
* 'A' show on active monitor (i.e. focused / selected) (or just -1 for active?) |
|||
* bar - bar index, 0 is default, 1 is extrabar |
|||
* alignment - how the module is aligned compared to other modules |
|||
* widthfunc, drawfunc, clickfunc - providing bar module width, draw and click functions |
|||
* name - does nothing, intended for visual clue and for logging / debugging |
|||
*/ |
|||
static const BarRule barrules[] = { |
|||
/* monitor bar alignment widthfunc drawfunc clickfunc name */ |
|||
{ -1, 0, BAR_ALIGN_LEFT, width_pwrl_tags, draw_pwrl_tags, click_pwrl_tags, "powerline_tags" }, |
|||
//{ -1, 0, BAR_ALIGN_LEFT, width_tags, draw_tags, click_tags, "tags" }, |
|||
{ 'A', 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, "systray" }, |
|||
{ -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, "layout" }, |
|||
// { 'A', 0, BAR_ALIGN_RIGHT, width_pwrl_status, draw_pwrl_status, click_pwrl_status, "powerline_status" }, |
|||
{ statusmon, 0, BAR_ALIGN_RIGHT, width_status, draw_status, click_statuscmd, "status" }, |
|||
{ -1, 0, BAR_ALIGN_NONE, width_bartabgroups, draw_bartabgroups, click_bartabgroups, "bartabgroups" }, |
|||
}; |
|||
|
|||
/* layout(s) */ |
|||
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 resizehints = 0; /* 1 means respect size hints in tiled resizals */ |
|||
static const int decorhints = 1; /* 1 means respect decoration hints */ |
|||
|
|||
#define FORCE_VSPLIT 1 |
|||
|
|||
|
|||
static const Layout layouts[] = { |
|||
/* symbol arrange function */ |
|||
{ "[]=", tile }, /* first entry is default */ |
|||
{ "><>", NULL }, /* no layout function means floating behavior */ |
|||
{ "[M]", monocle }, |
|||
{ "|M|", centeredmaster }, |
|||
{ ">M>", centeredfloatingmaster }, |
|||
{ "[\\]", dwindle }, |
|||
{ "###", nrowgrid }, |
|||
}; |
|||
|
|||
|
|||
/* key definitions */ |
|||
#define MODKEY Mod4Mask |
|||
#define AltMask Mod1Mask |
|||
#define ALTKEY Mod1Mask |
|||
#define TAGKEYS(KEY,TAG) \ |
|||
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ |
|||
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, |
|||
|
|||
|
|||
|
|||
/* helper for spawning shell commands in the pre dwm-5.0 fashion */ |
|||
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } |
|||
|
|||
/* commands */ |
|||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ |
|||
static const char *dmenucmd[] = { |
|||
"dmenu_run", |
|||
"-m", dmenumon, |
|||
"-fn", dmenufont, |
|||
"-nb", normbgcolor, |
|||
"-nf", normfgcolor, |
|||
"-sb", selbgcolor, |
|||
"-sf", selfgcolor, |
|||
NULL |
|||
}; |
|||
static const char *termcmd[] = { "st", NULL }; |
|||
static const char *tmuxcmd[] = { "st", "-c", "st-tmux", "-e", "/home/wiebel/sync/bin/tmux-spawn.sh", NULL }; |
|||
// static const char scratchpadname[] = "tilda"; |
|||
/* static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL }; */ |
|||
// static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-c", "st-tilda", "-g", "180x18", "-e", "tmux", "new-session", "-A", "-s", "tilda", NULL }; |
|||
|
|||
static const char *volup[] = { "/opt/pavolume/pavolume", "volup", "10", NULL }; |
|||
static const char *voldn[] = { "/opt/pavolume/pavolume", "voldown", "10", NULL }; |
|||
static const char *volmute[] = { "/opt/pavolume/pavolume", "mutetoggle", NULL }; |
|||
static const char *playpause[] = { "/usr/bin/playerctl", "play-pause", NULL }; |
|||
#include <X11/XF86keysym.h> |
|||
|
|||
/* This defines the name of the executable that handles the bar (used for signalling purposes) */ |
|||
#define STATUSBAR "dwmblocks" |
|||
|
|||
|
|||
static Key keys[] = { |
|||
/* modifier key function argument */ |
|||
{ MODKEY, XK_p, spawn, {.v = dmenucmd } }, |
|||
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = tmuxcmd } }, |
|||
{ MODKEY|ControlMask, XK_Return, spawn, {.v = termcmd } }, |
|||
{ MODKEY, XK_b, togglebar, {0} }, |
|||
{ MODKEY|ControlMask, XK_s, spawn, SHCMD("transset -a --dec .1") }, |
|||
{ MODKEY|ControlMask, XK_d, spawn, SHCMD("transset -a --inc .1") }, |
|||
{ ALTKEY, XK_w, spawn, SHCMD("pass-wrapper.sh") }, |
|||
{ MODKEY, XK_n, spawn, SHCMD("networkmanager_dmenu") }, |
|||
// { MODKEY, XK_grave, spawn, SHCMD("/home/wiebel/sync/bin/st-tilda.sh") }, |
|||
{ ALTKEY|ControlMask, XK_l, spawn, SHCMD("/usr/local/bin/lock.me") }, |
|||
/* Media Keys */ |
|||
{ 0, XF86XK_MonBrightnessUp, spawn, SHCMD("xbacklight -inc 5") }, |
|||
{ 0, XF86XK_MonBrightnessDown, spawn, SHCMD("xbacklight -dec 5") }, |
|||
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = volup } }, |
|||
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = voldn } }, |
|||
{ 0, XF86XK_AudioMute, spawn, {.v = volmute } }, |
|||
{ 0, XF86XK_AudioPlay, spawn, {.v = playpause } }, |
|||
{ MODKEY, XK_j, focusstack, {.i = +1 } }, |
|||
{ MODKEY, XK_k, focusstack, {.i = -1 } }, |
|||
{ MODKEY|ShiftMask, XK_j, inplacerotate, {.i = +1} }, |
|||
{ MODKEY|ShiftMask, XK_k, inplacerotate, {.i = -1} }, |
|||
{ MODKEY, XK_i, incnmaster, {.i = +1 } }, |
|||
{ MODKEY, XK_d, incnmaster, {.i = -1 } }, |
|||
{ MODKEY, XK_h, setmfact, {.f = -0.05} }, |
|||
{ MODKEY, XK_l, setmfact, {.f = +0.05} }, |
|||
{ MODKEY, XK_x, transfer, {0} }, |
|||
{ MODKEY, XK_Return, zoom, {0} }, |
|||
// { MODKEY|AltMask, XK_u, incrgaps, {.i = +1 } }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_u, incrgaps, {.i = -1 } }, |
|||
// { MODKEY|AltMask, XK_i, incrigaps, {.i = +1 } }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_i, incrigaps, {.i = -1 } }, |
|||
// { MODKEY|AltMask, XK_o, incrogaps, {.i = +1 } }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_o, incrogaps, {.i = -1 } }, |
|||
// { MODKEY|AltMask, XK_6, incrihgaps, {.i = +1 } }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_6, incrihgaps, {.i = -1 } }, |
|||
// { MODKEY|AltMask, XK_7, incrivgaps, {.i = +1 } }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_7, incrivgaps, {.i = -1 } }, |
|||
// { MODKEY|AltMask, XK_8, incrohgaps, {.i = +1 } }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_8, incrohgaps, {.i = -1 } }, |
|||
// { MODKEY|AltMask, XK_9, incrovgaps, {.i = +1 } }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_9, incrovgaps, {.i = -1 } }, |
|||
// { MODKEY|AltMask, XK_0, togglegaps, {0} }, |
|||
// { MODKEY|AltMask|ShiftMask, XK_0, defaultgaps, {0} }, |
|||
{ MODKEY, XK_Tab, view, {0} }, |
|||
{ MODKEY|ControlMask, XK_z, showhideclient, {0} }, |
|||
{ MODKEY, XK_q, killclient, {0} }, |
|||
{ MODKEY|ShiftMask, XK_c, killclient, {0} }, |
|||
{ MODKEY|ShiftMask, XK_q, quit, {0} }, |
|||
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, |
|||
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, |
|||
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, |
|||
{ MODKEY, XK_u, setlayout, {.v = &layouts[3]} }, |
|||
{ MODKEY, XK_o, setlayout, {.v = &layouts[4]} }, |
|||
{ MODKEY|ShiftMask, XK_t, setlayout, {.v = &layouts[5]} }, |
|||
{ MODKEY, XK_g, setlayout, {.v = &layouts[6]} }, |
|||
{ MODKEY, XK_space, setlayout, {0} }, |
|||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} }, |
|||
{ MODKEY|ShiftMask, XK_y, togglefakefullscreen, {0} }, |
|||
{ MODKEY|ShiftMask, XK_s, togglesticky, {0} }, |
|||
{ MODKEY, XK_grave, scratchpad_show, {0} }, |
|||
{ MODKEY, XK_Escape, scratchpad_show, {0} }, |
|||
{ MODKEY|ShiftMask, XK_grave, scratchpad_hide, {0} }, |
|||
{ MODKEY|ShiftMask, XK_Escape, scratchpad_hide, {0} }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_grave, scratchpad_remove, {0} }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_Escape, scratchpad_remove, {0} }, |
|||
{ MODKEY, XK_comma, focusmon, {.i = -1 } }, |
|||
{ MODKEY, XK_period, focusmon, {.i = +1 } }, |
|||
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, |
|||
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, |
|||
{ MODKEY, XK_Left, viewtoleft, {0} }, |
|||
{ MODKEY, XK_Right, viewtoright, {0} }, |
|||
{ MODKEY|ShiftMask, XK_Left, tagtoleft, {0} }, |
|||
{ MODKEY|ShiftMask, XK_Right, tagtoright, {0} }, |
|||
{ MODKEY|ControlMask, XK_Left, tagandviewtoleft, {0} }, |
|||
{ MODKEY|ControlMask, XK_Right, tagandviewtoright, {0} }, |
|||
{ MODKEY|ControlMask, XK_comma, tagallmon, {.i = +1 } }, |
|||
{ MODKEY|ControlMask, XK_period, tagallmon, {.i = -1 } }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_comma, tagswap:mon, {.i = +1 } }, |
|||
{ MODKEY|ShiftMask|ControlMask, XK_period, tagswapmon, {.i = -1 } }, |
|||
|
|||
{ MODKEY, XK_0, view, {.ui = ~0 } }, |
|||
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, |
|||
TAGKEYS( XK_1, 0) |
|||
TAGKEYS( XK_2, 1) |
|||
TAGKEYS( XK_3, 2) |
|||
TAGKEYS( XK_4, 3) |
|||
TAGKEYS( XK_5, 4) |
|||
TAGKEYS( XK_6, 5) |
|||
TAGKEYS( XK_7, 6) |
|||
TAGKEYS( XK_8, 7) |
|||
TAGKEYS( XK_9, 8) |
|||
}; |
|||
|
|||
|
|||
/* button definitions */ |
|||
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ |
|||
static Button buttons[] = { |
|||
/* click event mask button function argument */ |
|||
{ ClkLtSymbol, 0, Button1, setlayout, {0} }, |
|||
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, |
|||
{ ClkWinTitle, 0, Button1, togglewin, {0} }, |
|||
{ ClkWinTitle, 0, Button3, showhideclient, {0} }, |
|||
{ ClkWinTitle, 0, Button2, zoom, {0} }, |
|||
{ ClkStatusText, 0, Button1, sigstatusbar, {.i = 1 } }, |
|||
{ ClkStatusText, 0, Button2, sigstatusbar, {.i = 2 } }, |
|||
{ ClkStatusText, 0, Button3, sigstatusbar, {.i = 3 } }, |
|||
{ ClkClientWin, MODKEY, Button1, movemouse, {0} }, |
|||
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} }, |
|||
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} }, |
|||
{ ClkTagBar, 0, Button1, view, {0} }, |
|||
{ ClkTagBar, 0, Button3, toggleview, {0} }, |
|||
{ ClkTagBar, MODKEY, Button1, tag, {0} }, |
|||
{ ClkTagBar, MODKEY, Button3, toggletag, {0} }, |
|||
}; |
|||
|
|||
|
@ -0,0 +1,70 @@ |
|||
# dwm version
|
|||
VERSION = 6.2 |
|||
|
|||
# Customize below to fit your system
|
|||
|
|||
# paths
|
|||
PREFIX = /usr/local |
|||
MANPREFIX = ${PREFIX}/share/man |
|||
|
|||
X11INC = /usr/X11R6/include |
|||
X11LIB = /usr/X11R6/lib |
|||
|
|||
# FreeBSD (uncomment)
|
|||
#X11INC = /usr/local/include
|
|||
#X11LIB = /usr/local/lib
|
|||
|
|||
# Xinerama, comment if you don't want it
|
|||
XINERAMALIBS = -lXinerama |
|||
XINERAMAFLAGS = -DXINERAMA |
|||
|
|||
# freetype
|
|||
FREETYPELIBS = -lfontconfig -lXft |
|||
FREETYPEINC = /usr/include/freetype2 |
|||
# FreeBSD (uncomment)
|
|||
#FREETYPEINC = /usr/local/include/freetype2
|
|||
# OpenBSD (uncomment)
|
|||
#FREETYPEINC = ${X11INC}/freetype2
|
|||
# OpenBSD - Uncomment this for the swallow patch / SWALLOW_PATCH
|
|||
#KVMLIB = -lkvm
|
|||
|
|||
# Uncomment this for the alpha patch / BAR_ALPHA_PATCH
|
|||
XRENDER = -lXrender |
|||
|
|||
# Uncomment this for the mdpcontrol patch / MDPCONTROL_PATCH
|
|||
#MPDCLIENT = -lmpdclient
|
|||
|
|||
# Uncomment for the pango patch / BAR_PANGO_PATCH
|
|||
#PANGOINC = `pkg-config --cflags xft pango pangoxft`
|
|||
#PANGOLIB = `pkg-config --libs xft pango pangoxft`
|
|||
|
|||
# Uncomment for the ipc patch / IPC_PATCH
|
|||
#YAJLLIBS = -lyajl
|
|||
#YAJLINC = -I/usr/include/yajl
|
|||
|
|||
# Uncomment this for the rounded corners patch / ROUNDED_CORNERS_PATCH
|
|||
#XEXTLIB = -lXext
|
|||
|
|||
# Uncomment this for the swallow patch / SWALLOW_PATCH
|
|||
XCBLIBS = -lX11-xcb -lxcb -lxcb-res |
|||
|
|||
# This is needed for the winicon patch / BAR_WINICON_PATCH
|
|||
#IMLIB2LIBS = -lImlib2
|
|||
|
|||
# includes and libs
|
|||
INCS = -I${X11INC} -I${FREETYPEINC} ${YAJLINC} ${PANGOINC} |
|||
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} ${XRENDER} ${MPDCLIENT} ${XEXTLIB} ${XCBLIBS} ${KVMLIB} ${PANGOLIB} ${YAJLLIBS} ${IMLIB2LIBS} |
|||
|
|||
# flags
|
|||
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} |
|||
#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
|
|||
#CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
|
|||
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -march=native -O3 -flto ${INCS} ${CPPFLAGS} |
|||
LDFLAGS = -flto ${LIBS} |
|||
|
|||
# Solaris
|
|||
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
|
|||
#LDFLAGS = ${LIBS}
|
|||
|
|||
# compiler and linker
|
|||
CC = cc |
@ -0,0 +1,490 @@ |
|||
/* See LICENSE file for copyright and license details. */ |
|||
#include <stdio.h> |
|||
#include <stdlib.h> |
|||
#include <string.h> |
|||
#include <X11/Xlib.h> |
|||
#include <X11/Xft/Xft.h> |
|||
|
|||
#include "drw.h" |
|||
#include "util.h" |
|||
|
|||
#define UTF_INVALID 0xFFFD |
|||
#define UTF_SIZ 4 |
|||
|
|||
static const unsigned char utfbyte[UTF_SIZ + 1] = {0x80, 0, 0xC0, 0xE0, 0xF0}; |
|||
static const unsigned char utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8}; |
|||
static const long utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000}; |
|||
static const long utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF}; |
|||
|
|||
Clr transcheme[3]; |
|||
|
|||
static long |
|||
utf8decodebyte(const char c, size_t *i) |
|||
{ |
|||
for (*i = 0; *i < (UTF_SIZ + 1); ++(*i)) |
|||
if (((unsigned char)c & utfmask[*i]) == utfbyte[*i]) |
|||
return (unsigned char)c & ~utfmask[*i]; |
|||
return 0; |
|||
} |
|||
|
|||
static size_t |
|||
utf8validate(long *u, size_t i) |
|||
{ |
|||
if (!BETWEEN(*u, utfmin[i], utfmax[i]) || BETWEEN(*u, 0xD800, 0xDFFF)) |
|||
*u = UTF_INVALID; |
|||
for (i = 1; *u > utfmax[i]; ++i) |
|||
; |
|||
return i; |
|||
} |
|||
|
|||
static size_t |
|||
utf8decode(const char *c, long *u, size_t clen) |
|||
{ |
|||