diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-22 14:11:23 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-22 14:11:23 +0900 |
| commit | 5a1ab245ebdcc105439507dccd78e9e8e5505039 (patch) | |
| tree | bc938f6979d5544c097290987e3473f09e406b8a | |
| parent | 5949803466744dbb8296a8bcc3538e4c8532c9f9 (diff) | |
modified st/config.def.h, modified st/st.c
| -rw-r--r-- | st/config.def.h | 2 | ||||
| -rw-r--r-- | st/st.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/st/config.def.h b/st/config.def.h index f7d8745..8afcfd4 100644 --- a/st/config.def.h +++ b/st/config.def.h @@ -356,7 +356,7 @@ static Shortcut shortcuts[] = { { ControlMask, XK_Print, toggleprinter, {.i = 0} }, // TERMINAL - { ALTKEY, XK_Return, newterm, {.i = 0} }, + { ALTMOD, XK_Return, newterm, {.i = 0} }, // TRAVERSALS { ALTKEY, XK_y, kscrollup, {.i = 1} }, @@ -1251,7 +1251,8 @@ newterm(const Arg* a) _exit(0); } default: - wait(NULL); + // it causes freezing for the parents. + // wait(NULL); } } |
