Use terminal instead of tablify for song selection

This commit is contained in:
Nise Void 2020-05-14 20:04:25 +02:00
parent 556c9b2fbc
commit 0c59220f04
Signed by: NiseVoid
GPG Key ID: FBA14AC83EA602F3
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ static const Rule rules[] = {
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 1 << 5, 0, -1 },
{ "Firefox", NULL, NULL, 1 << 2, 0, -1 },
{ "tablify", NULL, NULL, ~0, 1, -1 },
{ "float", NULL, NULL, ~0, 1, -1 },
};
/* layout(s) */
@ -61,7 +61,7 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn()
static const char *dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_red, "-sf", col_gray4, NULL };
static const char *termcmd[] = { "st", NULL };
static const char *songcmd[] = { "song", NULL };
static const char *songcmd[] = { "st", "-c=float", "song", NULL };
static const char *browser1cmd[] = { "firefox", NULL };
static const char *browser2cmd[] = { "chromium", "--incognito", NULL };