update: dwmblocks icons; add: correct versions

This commit is contained in:
odweta
2026-05-26 14:35:28 +02:00
parent a9855f8d3e
commit 67d2dcc3b5
29 changed files with 255 additions and 2700 deletions
+22
View File
@@ -0,0 +1,22 @@
/* scratchpads */
typedef struct {
const char *name;
const void *cmd;
} Sp;
const char *spcmd0[] = {"st", "-n", "spterm", "-g", "120x34", NULL };
const char *spcmd1[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "lf", NULL };
const char *spcmd2[] = {"keepassxc", NULL };
const char *spcmd3[] = {"st", "-n", "spnmtui", "-g", "140x30", "-e", "nmtui", NULL };
const char *spcmd4[] = {"st", "-n", "spmusic", "-g", "140x30", "-e", "ncmpcpp", NULL };
static Sp scratchpads[] = {
/* name cmd */
{"spterm", spcmd0},
{"spranger", spcmd1},
{"spkeepassxc", spcmd2},
{"spnmtui", spcmd3},
{"spmusic", spcmd4},
};