diff options
author | joe <rbo@gmx.us> | 2025-09-12 17:06:29 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-12 17:06:29 +0200 |
commit | 1aeb6e6d64d592e97c8907972eed6090d1f9b465 (patch) | |
tree | dec60d343cd423fb7821d456461620bf7aa96cce | |
parent | fix (diff) | |
download | dwm-1aeb6e6d64d592e97c8907972eed6090d1f9b465.tar.gz dwm-1aeb6e6d64d592e97c8907972eed6090d1f9b465.tar.bz2 dwm-1aeb6e6d64d592e97c8907972eed6090d1f9b465.tar.xz dwm-1aeb6e6d64d592e97c8907972eed6090d1f9b465.tar.zst dwm-1aeb6e6d64d592e97c8907972eed6090d1f9b465.zip |
cmus
-rw-r--r-- | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 33507d2..9e16bab 100644 --- a/config.def.h +++ b/config.def.h @@ -34,13 +34,13 @@ typedef struct { const void *cmd; } Sp; const char *spcmd1[] = { "alacritty", "--class", "spnews", "-e", "zsh", "-ic", "nb", NULL }; -const char *spcmd2[] = { "alacritty", "--class", "spmpd", "-e", "ncmpc", NULL }; +const char *spcmd2[] = { "alacritty", "--class", "spmu", "-e", "cmus", NULL }; const char *spcmd3[] = { "alacritty", "--class", "spterm1", NULL }; const char *spcmd4[] = { "alacritty", "--class", "spterm2", NULL }; static Sp scratchpads[] = { /* name cmd */ {"spnews", spcmd1}, - {"spmpd", spcmd2}, + {"spmu", spcmd2}, {"spterm1", spcmd3}, {"spterm2", spcmd4}, }; @@ -106,7 +106,7 @@ static const Rule rules[] = { { "teams-for-linux", NULL, NULL, 0, 0, 0, 0, 1 }, { "thunderbird", NULL, NULL, 1 << 2, 0, 0, 0, 1 }, { NULL, "spnews", NULL, SPTAG(0), 0, 1, 0, -1 }, - { NULL, "spmpd", NULL, SPTAG(1), 0, 1, 0, -1 }, + { NULL, "spmu", NULL, SPTAG(1), 1, 1, 0, -1 }, { NULL, "spterm1", NULL, SPTAG(2), 0, 0, 0, -1 }, { NULL, "spterm2", NULL, SPTAG(3), 0, 0, 0, -1 }, }; |