diff --git a/README.adoc b/README.adoc index b39214c..394870d 100644 --- a/README.adoc +++ b/README.adoc @@ -97,21 +97,12 @@ hello: Pre-built binaries for Linux, MacOS, and Windows can be found on https://github.com/casey/just/releases[the releases page]. -You can use the following command to download the latest binary for MacOS or Windows, just replace `DESTINATION_DIRECTORY` with the directory where you'd like to put `just`: +You can use the following command on Linux, MacOS, or Windows to download the latest release, just replace `DEST` with the directory where you'd like to put `just`: ```sh -curl -LSfs https://japaric.github.io/trust/install.sh | \ - sh -s -- --git casey/just --to DESTINATION_DIRECTORY +curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to DEST ``` -On Linux, use: - -```sh -curl -LSfs https://japaric.github.io/trust/install.sh | \ - sh -s -- --git casey/just --target x86_64-unknown-linux-musl --to DESTINATION_DIRECTORY -``` - - == Quick Start See xref:Installation[] for how to install `just` on your computer. Try running `just --version` to make sure that it's installed correctly. diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 0000000..cbe7849 --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +just.systems diff --git a/docs/index.css b/docs/index.css new file mode 100644 index 0000000..55dad43 --- /dev/null +++ b/docs/index.css @@ -0,0 +1,55 @@ +:root { + --width-target: calc(100vw / 6); + --height-target: calc(100vh / 3); + --size: min(var(--width-target), var(--height-target)); + --margin-vertical: calc((100vh - var(--size) * 2) / 2); + --margin-horizontal: calc((100vw - var(--size) * 5) / 2); +} + +* { + margin: 0; + padding: 0; +} + +html { + background-color: black; + color: white; + overflow: hidden; + text-align: center; +} + +a { + color: white; + text-decoration: none; +} + +#just { + font-family: sans-serif; + font-size: var(--size); + line-height: var(--size); + display: grid; + grid-template-columns: repeat(4, 1fr); + margin-bottom: var(--margin-vertical); + margin-left: var(--margin-horizontal); + margin-right: var(--margin-horizontal); + margin-top: var(--margin-vertical); +} + +#just > * { + height: var(--size); + width: var(--size); +} + +#subtitle { + font-style: italic; +} + +/* just is an isogram */ +#j:after { content: 'j'; } +#j:hover:after { content: 'J'; } +#u:after { content: 'u'; } +#u:hover:after { content: 'U'; } +#s:after { content: 's'; } +#s:hover:after { content: 'S'; } +#t:after { content: 't'; } +#t:hover:after { content: 'T'; } diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..6e2e5aa --- /dev/null +++ b/docs/index.html @@ -0,0 +1,21 @@ + + +
+ + +