Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add better docs site #86

Merged
merged 43 commits into from
Mar 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
6fa7485
Start working on VitePress docs
anantnrg Mar 12, 2024
8326cf6
Modify some stuff
anantnrg Mar 12, 2024
6904307
start working
anantnrg Mar 12, 2024
81012ee
more stuff
anantnrg Mar 12, 2024
c40e36a
stufff
anantnrg Mar 12, 2024
08d07cb
add more routes
anantnrg Mar 12, 2024
5373c07
more stuff
anantnrg Mar 12, 2024
27b4eb4
stuff
anantnrg Mar 12, 2024
603f2dd
add list of items to get-started
anantnrg Mar 12, 2024
a13413a
start working on installation guide
anantnrg Mar 12, 2024
558b6d3
get rid of the pesky list
anantnrg Mar 13, 2024
66fba96
start work on install instructions
anantnrg Mar 13, 2024
ce81f90
modify
anantnrg Mar 13, 2024
535e77f
add instructions for more distros
anantnrg Mar 13, 2024
6d77b59
stuf
anantnrg Mar 13, 2024
26ad20a
instructions for rustup script
anantnrg Mar 14, 2024
9fd2cfe
more instructions
anantnrg Mar 14, 2024
84b9b41
finish rust install guide
anantnrg Mar 14, 2024
1498b89
instructions to install other deps
anantnrg Mar 14, 2024
549b45c
install instructions for some distros
anantnrg Mar 14, 2024
6cd7c27
add isntalling strata section
anantnrg Mar 14, 2024
e152777
instructions for installing strata
anantnrg Mar 14, 2024
7bff8af
updating strata
anantnrg Mar 14, 2024
0b2f9c2
finish install page
anantnrg Mar 14, 2024
f0f05db
add discord link and fix broken link in home
anantnrg Mar 14, 2024
430bb00
start working on customizing the theme
anantnrg Mar 14, 2024
6c271c4
set custom fonts
anantnrg Mar 14, 2024
061c1b3
start working on custom colors
anantnrg Mar 14, 2024
f95a246
going pretty good hehe :sweat_smile:
anantnrg Mar 14, 2024
6c85834
text and border colors
anantnrg Mar 14, 2024
03f4195
Finish stuff for now
anantnrg Mar 14, 2024
5baa9d5
add logo
anantnrg Mar 15, 2024
e5ddbcb
start work on custom home page layout
anantnrg Mar 15, 2024
846dd5b
get rid of home page
anantnrg Mar 15, 2024
cc59fc8
only hide nav links, theme toggle and social links on mobile devices
anantnrg Mar 15, 2024
10fab74
start working on custom scrollbar
anantnrg Mar 15, 2024
0331ace
custom scrollbar works
anantnrg Mar 15, 2024
d889cf2
redirect home page to installing page
anantnrg Mar 15, 2024
57a288b
enable search
anantnrg Mar 15, 2024
d1f9b62
create blank pages for configuration
anantnrg Mar 15, 2024
b3b1a0b
add nav link for config
anantnrg Mar 15, 2024
69f1c66
fix overflowing navbar
anantnrg Mar 15, 2024
2957833
remove reduntant text
anantnrg Mar 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
instructions for installing strata
  • Loading branch information
anantnrg committed Mar 14, 2024
commit e1527773dee7abdc59d5153d67273b4e95c4e602
20 changes: 19 additions & 1 deletion docs/get-started/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,22 @@ Now, to install Strata, you first have to clone the Git repository. For this, us

::: details Why Git?
Since Strata is being constantly updated, you'll often have to download the latest repository and re-compile it. Using `git` makes this significantly easier than downloading and extracting the Zip archive each time. Throughout this guide, it is assumed that you're using `git`.
:::
:::

To clone the repo, run:

```bash
git clone https://github.com/stratawm/strata
```

Then to install Strata, `cd` into the cloned repo:

```bash
cd strata
```

and run this command to install it:

```bash
sudo make install
```