1
0
mirror of https://github.com/mintty/wsltty.git synced 2025-11-14 05:45:50 +00:00

Compare commits

..

3 Commits
0.7.4 ... 0.7.5

Author SHA1 Message Date
mintty
195f4069b4 0.7.5 2017-03-11 21:19:25 +01:00
mintty
9b3b1a89aa new section "Shell selection" 2017-01-31 12:51:03 +01:00
mintty
4e937486f5 2017-01-30 16:31:17 +01:00
2 changed files with 16 additions and 10 deletions

View File

@@ -13,7 +13,7 @@ Run the [installer](https://github.com/mintty/wsltty/releases) to install
### Configuration ###
#### Command line scripts wsl*.bat ####
#### Command line scripts `wsl*.bat` ####
WSLtty installs the following scripts in its application folder `%LOCALAPPDATA%\wsltty`:
* `wsl.bat` to start a WSL bash in the current folder/directory
@@ -49,6 +49,12 @@ Note that the `%APPDATA%\mintty\config` option provides the possibility
to maintain common mintty settings for various installations (like
wsltty, Cygwin, MinGW/msys, Git for Windows, MinEd for Windows).
#### Shell selection ####
To invoke your favourite shell, simply replace `/bin/bash` with its pathname
in the Desktop shortcuts, `wsl*.bat` invocation scripts,
or Explorer context menu commands (configured in `config-context-menu.bat`).
### Components ###
For mintty, see the [Mintty homepage](http://mintty.github.io/),

View File

@@ -1,12 +1,18 @@
#############################################################################
# default: generate all
# build a wsltty installer package:
# configure ver=... and minttyver= in this makefile
# make targets:
# make [all] to build a distributable installer (default)
# make pkg to build an installer, bypassing the system checks
# make wsltty to build an installer using the local copy of mintty
all: check pkg
# wsltty release
ver=0.7.4
ver=0.7.5
# mintty release version
minttyver=2.7.4
minttyver=2.7.5
#minttyver=master
# wslbridge backend version
@@ -18,12 +24,6 @@ wslbridgever=0.2.1
# release 0.2.1 is updated and complete, no separate frontend build needed:
wslbridge-frontend=
help:
echo configure `ver=...` and `minttyver=` in this makefile
echo run `make` to build a distributable installer
echo run `make pkg` to build an installer, bypassing the system checks
echo run `make wsltty` to build an installer using the local copy of mintty
#############################################################################
# target checking and some defs