summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoshua <joshua@joshuayun.com>2023-12-24 17:56:54 -0500
committerjoshua <joshua@joshuayun.com>2023-12-24 17:56:54 -0500
commitfd0493a65cfb4114662fbda671565ea15a0bdc4f (patch)
tree0a9fc4efafc16ae5a101990e4ff6901727ade737
parentac40942a45fc8c425fb349b25119a607a7b150a0 (diff)
downloaddwm-master.tar.gz
Changed scratch pad command to calculatorHEADmaster
-rw-r--r--config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h
index 6591889..a323b99 100644
--- a/config.h
+++ b/config.h
@@ -39,12 +39,12 @@ typedef struct {
const char *name;
const void *cmd;
} Sp;
-const char *spcmd1[] = {"st", "-n", "spterm", "-g", "120x34", NULL };
-const char *spcmd2[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "ranger", NULL };
+const char *spcmd1[] = {TERMINAL, "-n", "spterm", "-g", "120x34", NULL };
+const char *spcmd2[] = {TERMINAL, "-n", "spcalc", "-f", "monospace:size=16", "-g", "50x20", "-e", "bc", "-lq", NULL };
static Sp scratchpads[] = {
/* name cmd */
{"spterm", spcmd1},
- {"spranger", spcmd2},
+ {"spcalc", spcmd2},
};