birdwm

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

commit a7ee45f4be48d33f0beb62102a6fee22c8dfe02b
parent 1e2c165dee607cdffc1311ef2241df73e5c38012
Author: mrgrouse <mrgrouse@mrgrouse.com>
Date:   Sun,  1 Sep 2024 21:28:31 -0400

config.def.h: switch default scratchpad terminal from birdterm to kitty

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

diff --git a/config.def.h b/config.def.h @@ -39,11 +39,11 @@ char upgradescript[] = "upgrader.sh"; /* upgrade script */ char musicterm[] = "vimpc"; /* tui music player */ char termtop[] = "htop"; /* htop scratchpad */ -static const char *spcmd1[] = {"birdterm", "-n", "spterm", "-g", scratchpadsize, }; /* regular terminal scratchpad */ -static const char *spcmd2[] = {"birdterm", "-n", "spfm", "-g", scratchpadsize, "-e", termfm, }; /* file manager scratchpad */ -static const char *spcmd3[] = {"birdterm", "-n", "upgrader", "-g", scratchpadsize, "-e", upgradescript, }; /* upgrade script, change if your script is named differently */ -static const char *spcmd4[] = {"birdterm", "-n", "musicterm", "-g", scratchpadsize, "-e", musicterm, }; -static const char *spcmd5[] = {"birdterm", "-n", "termtop", "-g", scratchpadsize, "-e", termtop, }; +static const char *spcmd1[] = {"kitty", "--name", "spterm", }; /* regular terminal scratchpad */ +static const char *spcmd2[] = {"kitty", "--name", "spfm", termfm, }; /* file manager scratchpad */ +static const char *spcmd3[] = {"kitty", "--name", "upgrader", upgradescript, }; /* upgrade script, change if your script is named differently */ +static const char *spcmd4[] = {"kitty", "--name", "musicterm", musicterm, }; +static const char *spcmd5[] = {"kitty", "--name", "termtop", termtop, }; static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1},