2022-07-22 08:34:54 +03:00
|
|
|
#!/bin/sh
|
|
|
|
# This script is a helper that starts a new terminal window
|
|
|
|
# in the cwd of the calling process, rather than using the
|
|
|
|
# default cwd which is usually the home directory.
|
2022-07-22 16:45:05 +03:00
|
|
|
exec wezterm start --cwd "$PWD" -- "$@"
|