diff options
author | Bradley Taunt <bt@btxx.org> | 2024-10-22 13:22:57 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-10-22 13:22:57 -0400 |
commit | 5ca95f9232985024f0b4a92b7dd3b1bd63af22cb (patch) | |
tree | 8d6b01a79ceead02be2e6f639d4e9c4f0b56cac1 /config.def.h | |
parent | 16acdb1803317f2f87c46ee0e0cac1fcbfea6c33 (diff) |
Diffstat (limited to 'config.def.h')
-rwxr-xr-x | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index af546bb..7c83eeb 100755 --- a/config.def.h +++ b/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 focus on the fullscreen win 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 }; |