From 0c59220f044b6e9112de1a2148a8e544fe6eefb2 Mon Sep 17 00:00:00 2001 From: NiseVoid Date: Thu, 14 May 2020 20:04:25 +0200 Subject: [PATCH] Use terminal instead of tablify for song selection --- config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.h b/config.h index 3a9fd3b..064ad9a 100644 --- a/config.h +++ b/config.h @@ -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 };