diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-12-15 09:15:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-15 09:15:50 -0500 |
commit | 67eabfe475e273370de6e224f2ccd55f5d65452f (patch) | |
tree | 4f03caddb9801dc8b3120949d60adaf2d03d2be0 | |
parent | 0a379dcaf8937b587b306c0dc105e2dc7c675949 (diff) | |
parent | 73d9eb9e2e9733c6f80afa9a668e27913c4daa8b (diff) |
Merge pull request #139 from kronikpillow/merge
small fix
-rw-r--r-- | config.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,7 +37,7 @@ const char *spcmd2[] = {TERMINAL, "-n", "spcalc", "-f", "monospace:size=16", "-g static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1}, - {"spranger", spcmd2}, + {"spcalc", spcmd2}, }; /* tagging */ @@ -70,7 +70,7 @@ static const Layout layouts[] = { { "[@]", spiral }, /* Fibonacci spiral */ { "[\\]", dwindle }, /* Decreasing in size right and leftward */ - { "H[]", deck }, /* Master on left, slaves in monocle-like mode on right */ + { "[D]", deck }, /* Master on left, slaves in monocle-like mode on right */ { "[M]", monocle }, /* All windows on top of eachother */ { "|M|", centeredmaster }, /* Master in middle, slaves on sides */ |