Skip to content

Commit

Permalink
Configure gaps and change browser on mod+c shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
Jab2870 committed Dec 23, 2019
1 parent 1c0418f commit acfb6df
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions config.def.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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 };
Expand Down Expand Up @@ -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 } },
Expand Down

0 comments on commit acfb6df

Please sign in to comment.