From acfb6dfbd4a1a6ca6b47f33fedff5ab4ece9d227 Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Mon, 23 Dec 2019 13:21:37 +0000 Subject: [PATCH] Configure gaps and change browser on mod+c shortcut --- config.def.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index 47ad729..4450325 100644 --- a/config.def.h +++ b/config.def.h @@ -4,8 +4,8 @@ #include "X11/XF86keysym.h" /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int gappx = 6; /* gaps between windows */ +static const unsigned int borderpx = 0; /* border pixel of windows */ +static const unsigned int gappx = 3; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 0; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ @@ -82,6 +82,7 @@ static const char *qutebrowser[] = { "qutebrowser", NULL }; static const char *surf[] = { "tabbed", "-c", "surf", "-e", NULL }; static const char *chromium[] = { "chromium", NULL }; static const char *bigchromium[] = { "chromium", "--force-device-scale-factor=2", NULL }; +static const char *firefox[] = { "firefox-developer-edition", NULL }; static const char *date[] = { "datetime", NULL }; static const char *battery[] = { "battery", NULL }; @@ -145,8 +146,8 @@ static Key keys[] = { //Applications { MODKEY|ShiftMask, XK_q, spawn, {.v = qutebrowser } }, { MODKEY , XK_s, spawn, {.v = surf } }, - { MODKEY, XK_c, spawn, {.v = chromium } }, - { MODKEY|ShiftMask, XK_c, spawn, {.v = bigchromium } }, + { MODKEY, XK_c, spawn, {.v = firefox } }, + { MODKEY|ShiftMask, XK_c, spawn, {.v = chromium } }, //Dmenu / Rofi { MODKEY, XK_u, spawn, {.v = unicode } }, { MODKEY, XK_y, spawn, {.v = youtube } },