aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configs/framework.h200
1 files changed, 200 insertions, 0 deletions
diff --git a/configs/framework.h b/configs/framework.h
new file mode 100644
index 0000000..e6cf928
--- /dev/null
+++ b/configs/framework.h
@@ -0,0 +1,200 @@
+/* See LICENSE file for copyright and license details. */
+
+/* XF86 keys */
+#define VOLDOWN 0x1008FF11 /* Volume control down */
+#define VOLMUTE 0x1008FF12 /* Mute sound from the system */
+#define VOLUP 0x1008FF13 /* Volume control up */
+#define AUDIOPREV 0x1008FF16 /* Previous song */
+#define AUDIONEXT 0x1008FF17 /* Next song */
+#define AUDIOPLAY 0x1008FF14 /* Play/pause */
+#define BLUP 0x1008FF02 /* Monitor brightness up */
+#define BLDOWN 0x1008FF03 /* Monitor brightness down */
+#define PRINT 0x0000FF61 /* Print screen */
+#define MEDIA 0x1008FF32 /* Focus mode */
+
+/* appearance */
+static const unsigned int borderpx = 1; /* border pixel of windows */
+static const unsigned int snap = 8; /* snap pixel */
+static const int showbar = 1; /* 0 means no bar */
+static const int topbar = 0; /* 0 means bottom bar */
+static const char *fonts[] = { "DVIcons:size=10" };
+static const char dmenufont[] = "DVIcons:size=10";
+
+/* Tango color scheme
+ * https://en.wikipedia.org/wiki/Tango_Desktop_Project
+ */
+enum tango_shades { light = 0, medium, dark };
+static const char * const col_butter[] = {"#fce94f", "#edd400", "#c4a000"};
+static const char * const col_orange[] = {"#fcaf3e", "#f57900", "#ce5c00"};
+static const char * const col_chocolate[] = {"#e9b96e", "#c17d11", "#8f5902"};
+static const char * const col_chameleon[] = {"#8ae234", "#73d216", "#4e9a06"};
+static const char * const col_sky_blue[] = {"#729fcf", "#3465a4", "#204a87"};
+static const char * const col_plum[] = {"#ad7fa8", "#75507b", "#5c3566"};
+static const char * const col_scarlet[] = {"#ef2929", "#cc0000", "#a40000"};
+static const char * const col_alu_light[] = {"#eeeeec", "#d3d7cf", "#babdb6"};
+static const char * const col_alu_dark[] = {"#888a85", "#555753", "#2e3436"};
+
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { col_alu_dark[light], col_alu_dark[dark], col_alu_dark[medium] },
+ [SchemeSel] = { col_sky_blue[light], col_alu_dark[dark], col_sky_blue[light] },
+ [SchemeWarn] = { col_butter[light], col_alu_dark[dark], col_alu_light[light] },
+ [SchemeUrgent]= { col_scarlet[light], col_alu_dark[dark], col_alu_light[light] },
+};
+
+/* Display modes of the tab bar: never shown, always shown, shown only in */
+/* monocle mode in presence of several windows. */
+/* Modes after showtab_nmodes are disabled */
+enum showtab_modes { showtab_never, showtab_auto, showtab_nmodes, showtab_always};
+static const int showtab = showtab_auto; /* Default tab bar show mode */
+static const Bool toptab = True; /* False means bottom tab bar */
+
+/*
+web: E372
+media: E140
+office: E0F2
+file manager: E235
+chat: E21B
+work: E3A9
+win7: E343
+gp: E027
+*/
+/* tags web chat work office media win7 gp gp gp */
+static const char *tags[] = { "\uE372", "\uE21B", "\uE3A9", "\uE0F2", "\uE140", "\uE343", "\uE027", "\uE027", "\uE027" };
+
+/* default layout per tags */
+/* The first element is for all-tag view, following i-th element corresponds to */
+/* tags[i]. Layout is referred using the layouts array index.*/
+static int def_layouts[1 + LENGTH(tags)] = { 0, 0, 0, 0, 2, 2, 2, 0, 0, 0};
+
+static const Rule rules[] = {
+ /* xprop(1):
+ * WM_CLASS(STRING) = instance, class
+ * WM_NAME(STRING) = title
+ */
+ /* class instance title tags mask isfloating monitor */
+ { "Firefox", NULL, NULL, 1 << 0, 0, -1 },
+ { "TelegramDesktop", "telegram-desktop", "Telegram", 1 << 1, False, -1 },
+ { "Thunderbird", "Mail", NULL, 1 << 1, False, -1 },
+ { "TeXstudio", "texstudio", NULL, 1 << 3, False, -1 },
+ { "Abiword", "abiword", NULL, 1 << 3, False, -1 },
+ { "Gnumeric", "gnumeric", NULL, 1 << 3, False, -1 },
+
+ { "Deadbeef", "deadbeef", NULL, 1 << 4, False, -1 },
+ { "Vlc", "vlc", NULL, 1 << 4, False, -1 },
+};
+
+/* layout(s) */
+static const float mfact = 0.5; /* 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 lockfullscreen = 0; /* 1 will force focus on the fullscreen window */
+
+static const Layout layouts[] = {
+ /* symbol arrange function */
+ { "[]=", tile }, /* first entry is default */
+ { "><>", NULL }, /* no layout function means floating behavior */
+ { "[M]", monocle },
+};
+
+/* 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", col_alu_dark[dark], "-nf", col_alu_dark[light], "-sb", col_alu_dark[dark], "-sf", col_sky_blue[light], NULL };
+static const char *termcmd[] = { "xterm", NULL };
+static const char *browsercmd[] = { "firefox", NULL };
+static const char *emailcmd[] = { "thunderbird", NULL };
+static const char *playercmd[] = { "deadbeef", NULL };
+static const char *editorcmd[] = { "gedit", NULL };
+static const char *scrotcmd[] = { "scrot", "/home/eddy/screenshots/%Y-%m-%d-%H:%M:%S.png", NULL };
+static const char *lockcmd[] = { "i3lock", "-c", "000000", NULL };
+
+static const char *lowervolumecmd[] = { "amixer", "-q", "set", "Master", "2%-", NULL };
+static const char *raisevolumecmd[] = { "amixer", "-q", "set", "Master", "2%+", NULL };
+static const char *mutevolumecmd[] = { "amixer", "-q", "set", "Master", "toggle", NULL };
+
+static const char *raisebrightness[] = { "xbacklight", "-inc", "5", NULL };
+static const char *lowerbrightness[] = { "xbacklight", "-dec", "5", NULL };
+
+static const Key keys[] = {
+ /* modifier key function argument */
+ { MODKEY, XK_d, spawn, {.v = dmenucmd } },
+ { MODKEY, XK_Return, spawn, {.v = termcmd } },
+ { MODKEY, XK_t, spawn, {.v = browsercmd } },
+ { MODKEY|ShiftMask, XK_p, spawn, {.v = playercmd } },
+ { MODKEY|ShiftMask, XK_o, spawn, {.v = emailcmd } },
+ { MODKEY|ShiftMask, XK_i, spawn, {.v = editorcmd } },
+ { MODKEY, XK_p, spawn, {.v = lockcmd } },
+
+ { 0, PRINT, spawn, {.v = scrotcmd } },
+
+ { MODKEY, XK_h, focusstack, {.i = -1 } },
+ { MODKEY, XK_l, focusstack, {.i = +1 } },
+ { MODKEY, XK_k, incnmaster, {.i = +1 } },
+ { MODKEY, XK_j, incnmaster, {.i = -1 } },
+ { MODKEY|ShiftMask, XK_h, setmfact, {.f = -0.05} },
+ { MODKEY|ShiftMask, XK_l, setmfact, {.f = +0.05} },
+ { MODKEY|ShiftMask, XK_Return, zoom, {0} },
+
+ { MODKEY, XK_e, setlayout, {.v = &layouts[0]} },
+ { MODKEY, XK_r, setlayout, {.v = &layouts[1]} },
+ { MODKEY, XK_w, setlayout, {.v = &layouts[2]} },
+ //{ MODKEY, XK_space, setlayout, {0} },
+ { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
+
+ //{ MODKEY, XK_0, view, {.ui = ~0 } },
+ //{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~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 } },
+
+ TAGKEYS( XK_n, 0) // web
+ TAGKEYS( XK_b, 1) // chat
+ TAGKEYS( XK_a, 2) // work
+ TAGKEYS( XK_s, 3) // office
+ TAGKEYS( XK_m, 4) // media
+ TAGKEYS( XK_v, 5) // win7
+ TAGKEYS( XK_1, 6) // gp
+ TAGKEYS( XK_2, 7) // gp
+ TAGKEYS( XK_3, 8) // gp
+
+ { 0, VOLUP, spawn, {.v = raisevolumecmd } },
+ { 0, VOLDOWN, spawn, {.v = lowervolumecmd } },
+ { 0, VOLMUTE, spawn, {.v = mutevolumecmd } },
+ { 0, BLUP, spawn, {.v = raisebrightness } },
+ { 0, BLDOWN, spawn, {.v = lowerbrightness } },
+
+ { MODKEY|ShiftMask, XK_q, killclient, {0} },
+ { MODKEY|ShiftMask, XK_e, quit, {0} },
+};
+
+/* button definitions */
+/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
+static const Button buttons[] = {
+ /* click event mask button function argument */
+ //{ ClkLtSymbol, 0, Button1, setlayout, {0} },
+ //{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
+ //{ ClkWinTitle, 0, Button2, zoom, {0} },
+ //{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
+ { 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} },
+ //{ ClkTabBar, 0, Button1, focuswin, {0} },
+};
+