|
|
|
@ -5,7 +5,7 @@ |
|
|
|
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } |
|
|
|
|
|
|
|
|
|
/* appearance */ |
|
|
|
|
static const unsigned int borderpx = 1; /* border pixel of windows */ |
|
|
|
|
static const unsigned int borderpx = 0; /* border pixel of windows */ |
|
|
|
|
static const unsigned int snap = 16; /* snap pixel (32)*/ |
|
|
|
|
static const unsigned int gappx = 1; |
|
|
|
|
static const unsigned int gapmodes[] = { 0, 64 }; |
|
|
|
@ -38,7 +38,7 @@ static const char *colors[][3] = { |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/* tagging */ |
|
|
|
|
static const char *tags[] = { "o", "o", "o", "o", "o", "o", "o", "o", "o" }; |
|
|
|
|
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; |
|
|
|
|
|
|
|
|
|
static const Rule rules[] = { |
|
|
|
|
/* xprop(1):
|
|
|
|
@ -80,6 +80,7 @@ static const Layout layouts[] = { |
|
|
|
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ |
|
|
|
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-p", "Run $", "-z", "512", NULL }; |
|
|
|
|
static const char *termcmd[] = { "alacritty", NULL }; |
|
|
|
|
static const char *browsercmd[] = { "firefox", NULL }; |
|
|
|
|
static const char *betterlockscreencmd[] = { "betterlockscreen", "--lock", "blur", NULL }; |
|
|
|
|
static const char *screenshotcmd[] = { "flameshot", "gui", NULL }; |
|
|
|
|
static const char *cmuspausecmd[] = { "cmus-remote", "--pause", NULL }; |
|
|
|
|