birdwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit cd534147aa65c4c4493868196d48eee705865d44
parent f3fb25682d8abbf11829b79f14c2d0633b62bb3b
Author: grouse <bdmfegys@duck.com>
Date:   Wed,  6 Dec 2023 21:25:15 -0500

add comments to describe scratchpads

Diffstat:
Mconfig.def.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -31,9 +31,9 @@ typedef struct { const char *name; const void *cmd; } Sp; -static const char *spcmd1[] = {"st", "-n", "spterm", "-g", "144x41", NULL }; -static const char *spcmd2[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "ranger", NULL }; -static const char *spcmd3[] = {"st", "-n", "upgrader", "-g", "144x41", "-e", "upgrader", NULL }; +static const char *spcmd1[] = {"st", "-n", "spterm", "-g", "144x41", NULL }; /* regular terminal scratchpad */ +static const char *spcmd2[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "ranger", NULL }; /* file manager scratchpad */ +static const char *spcmd3[] = {"st", "-n", "upgrader", "-g", "144x41", "-e", "upgrader", NULL }; /* upgrade script, change if your script is named differently */ static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1},