commit 5ca95f9232985024f0b4a92b7dd3b1bd63af22cb from: Bradley Taunt date: Tue Oct 22 17:22:57 2024 UTC Use kitty as default terminal commit - 16acdb1803317f2f87c46ee0e0cac1fcbfea6c33 commit + 5ca95f9232985024f0b4a92b7dd3b1bd63af22cb blob - af546bb31a38259bbd856dc4b70901f80a62d881 blob + 7c83eebcda0198af1f50906abffe6788c728d868 --- config.def.h +++ config.def.h @@ -35,7 +35,7 @@ static const Rule rules[] = { { "Firefox", NULL, NULL, 0, 1, 0, -1 }, { "qutebrowser", NULL, NULL, 0, 1, 0, -1 }, { "surf", NULL, NULL, 0, 1, 0, -1 }, - { "st", NULL, NULL, 0, 1, 0, -1 }, + { "kitty", NULL, NULL, 0, 1, 1, -1 }, { "feh", NULL, NULL, 0, 1, 0, -1 }, }; @@ -47,8 +47,8 @@ static const int lockfullscreen = 1; /* 1 will force f static const Layout layouts[] = { /* symbol arrange function */ - { "[]=", tile }, /* first entry is default */ { "><>", NULL }, /* no layout function means floating behavior */ + { "[]=", tile }, /* first entry is default */ { "[M]", monocle }, }; @@ -66,7 +66,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; -static const char *termcmd[] = { "st", NULL }; +static const char *termcmd[] = { "kitty", NULL }; static const char *webcmd[] = { "firefox", NULL }; static const char *lockcmd[] = { "slock", NULL }; static const char *brupcmd[] = { "doas", "light", "-A", "10", NULL };