dwm

[fork] dynamic window manager
Log | Files | Refs | README | LICENSE

commit cb9f64789a2e7be0418d360ca9b8461bfee92ccb
parent bdc31b4fb46c22242c4e0d678e863c33437394ad
Author: hhvn <dev@hhvn.uk>
Date:   Sat, 11 Dec 2021 19:15:19 +0000

config.h: spawn mpvrcp on current tag

The reason for this is that the IPC stuff in mpv takes up quite a chunk
of CPU if it gets getting polled that quickly, so I would rather spawn
it on the current tag quickly and then kill it rather than keep it on
III constantly.

Diffstat:
Mconfig.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.h b/config.h @@ -23,7 +23,7 @@ static const char *tags[] = { "I", "II", "III", "IV", "V", "VI", "VII", "VIII", static const Rule rules[] = { { "Gimp", NULL, NULL, 1 << 7, 0, 0 }, { "mpv", NULL, NULL, 1 << 1, 0, 0 }, - { "mpvrcp", NULL, NULL, 1 << 2, 1, 0 }, + { "mpvrcp", NULL, NULL, 0, 1, 0 }, }; /* layout(s) */