vault backup: 2024-03-12 11:47:10

This commit is contained in:
cainnz
2024-03-12 11:47:10 -07:00
parent 2f31485898
commit 328bce71a5
2 changed files with 124 additions and 9 deletions

View File

@@ -18,8 +18,20 @@
"source": false
}
}
},
{
"id": "740af7d7c7674fe5",
"type": "leaf",
"state": {
"type": "diff-view",
"state": {
"file": "Tenmado/Windows.md",
"staged": false
}
]
}
}
],
"currentTab": 1
}
],
"direction": "vertical"
@@ -85,7 +97,6 @@
"state": {
"type": "backlink",
"state": {
"file": "Tenmado/Quotes.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -102,7 +113,6 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "Tenmado/Quotes.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
@@ -124,9 +134,7 @@
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Tenmado/Quotes.md"
}
"state": {}
}
},
{
@@ -154,8 +162,11 @@
"command-palette:Open command palette": false
}
},
"active": "fc9fca48673f0de6",
"active": "740af7d7c7674fe5",
"lastOpenFiles": [
"Tenmado/Windows.md",
"Tenmado/Quotes.md",
"Untitled",
"Files/Screenshots/Money.Manager.EX.png",
"Files/Screenshots/Files.App.png",
"Files/Screenshots/Alacritty.win.png",
@@ -170,8 +181,6 @@
"Tenmado/Docker Compose.md",
"Tenmado/Git.md",
"Tenmado/Linux - Neovim.md",
"Tenmado/Quotes.md",
"Untitled",
"Tenmado/Linux - Desktop Entries.md",
"Tenmado/Linux - Games Live Streaming.md",
"README.md",

106
Tenmado/Windows.md Normal file
View File

@@ -0,0 +1,106 @@
## Essentials
#Public/Notta
### tldr list:
- **Files:** [Files Installation](https://files.community/download)
- **Money Manager EX:** [Installation](https://github.com/moneymanagerex/moneymanagerex)
- **ScreenToGit:** [Installation](https://github.com/NickeManarin/ScreenToGif)
- **Typora:** [Installation](https://typora.io/#feature)
-
### Files app:
Great replacement for File Explorer > [Files Installation](https://files.community/download)
![obsidian](/Files/Screenshots/Files.App.png)
### Money Manager EX
Multi platform app to keep track of finances, it is very well made and maintain > [Installation](https://github.com/moneymanagerex/moneymanagerex)
![obsidian](/Files/Screenshots/Money.Manager.EX.png)
### ScreenToGif
This tool allows you to record a selected area of your screen, live feed from your webcam or live drawings from a sketchboard. Afterward, you can edit and save the animation as a gif, apng, video, psd or png image > [Installation](https://github.com/NickeManarin/ScreenToGif)
---
## Terminals
### Alacritty
One of the best and fastest Terminals [Installation](https://github.com/alacritty/alacritty)
![obsidian](/Files/Screenshots/Alacritty.win.png)
> [!NOTE] Config Location
> Global config can be found at *soru/dots/windows/alacritty*
> Copy config to *%APPDATA%\alacritty\alacritty.yml* create folders as neccesary
> or C:\Users\dashi\AppData\Roaming\alacritty
**Create WSL2 Shortcut**
- Navigate to *"C:\Program Files\Alacritty"*
- Create a new shortcut for *Alacritty.exe*
- Right Click > Properties > Target Text Box > "C:\Program Files\Alacritty\alacritty.exe" -e wsl ~
- -e wsl ~ *these are the parameters to add at the end of Target Text Box*
**For Icons to work, install Nerd Fonts with scoop** > #Windows/Scoop
---
## Package Managers
#Windows/Scoop
### Scoop
Scoop install programs you know and love, from the command line with a minimal amount of friction. > [Installation](https://scoop.sh/)
*Check website, commands and scripts might have changed*
```powershell
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time
irm get.scoop.sh | iex
```
**Installing Fonts**
```powershell
scoop bucket add nerd-fonts
scoop install nerd-fonts/Agave-NF-Mono
```
All other fonts can be found in *scoop* main website
#Windows/Choco
### Chocolatey
Well known and extensive package manager. > [Installation](https://chocolatey.org/)
*Check website for updated installation instructions*
```powershell
choco list # List all chocolatey package
choco search zip # Search packages mentioning "zip"
choco search --by-tag compression # Search packages by their tags
choco search --order-by-popularity zip # FIlter and sort by package results by popularity
choco search --approved-only zip # Only return approved package
choco info 7zip # Get information about 7zip package
# Install
choco install 7zip # Install
choco install 7zip --install-directory=P:\7z # Install to a specific directory
# Maintenance
choco list --localonly # List installed packages
choco outdated # List upgradable packages
choco upgrade all -y # Upgrade all packages
# Pinning
choco pin list # List pinned packages
choco pin add --name 7zip # Suppress upgrades for 7zip
choco pin remove --name 7zip # Supress upgrades supression for 7zip ;)
```
## Terminal Config & Tricks
To change *Copy/Paste* action on Windows Terminal change these commands within *Setting.json*
This is needed when using *Neovim in WSL2* otherwise, *Visual Block* will not work as intended
```json
"action": "copy",
"singleLine": false
"keys": "ctrl+shift+c"
"command": "paste",
"keys": "ctrl+shift+v"
```