Skip to content

Commit

Permalink
Update tips.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Zila-itc authored Dec 17, 2024
1 parent 0cf7300 commit 26ad285
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ toc: content
title: Tips
---

# Linux
## WSL

### View the list of distros and their current state

wsl.exe -l -v
### Shutdown Current distro
```bash
wsl.exe -l -v
```
### Shutdown specific distro
```bash
wsl.exe -t <DistroName>
```
### Boot up the default distro
```bash
wsl.exe
```
### Boot up specific distro
```bash
wsl.exe -d <DistroName>
```
# Electron Js
## Make all links open with the browser, not with the application
- createWindow fn
Expand Down

0 comments on commit 26ad285

Please sign in to comment.