https://github.com/ovler-young/personal-scoop
Scoop for my personal use
https://github.com/ovler-young/personal-scoop
Last synced: 4 months ago
JSON representation
Scoop for my personal use
- Host: GitHub
- URL: https://github.com/ovler-young/personal-scoop
- Owner: Ovler-Young
- License: unlicense
- Created: 2022-02-03T15:05:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-10T10:04:40.000Z (4 months ago)
- Last Synced: 2025-02-18T07:59:30.594Z (4 months ago)
- Language: PowerShell
- Size: 64.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# đ¨ Scoopet đ¨
For ones familiar with Scoop:
```powershell
scoop bucket add scoopet https://github.com/Ovler-Young/Personal-scoop
```## :star: Summary
| App | Auto-Update ? | Original ? |
| :----------------------------------------------------------: | :-----------: | :--------: |
| [Rune](https://github.com/Losses/rune) | â | â |
| [Rclone Browser](https://github.com/kapitainsky/RcloneBrowser) | Ã | â |
| [Galaxy Buds Client](https://github.com/ThePBone/GalaxyBudsClient) | â | â |
| [Smart System Menu](https://github.com/AlexanderPro/SmartSystemMenu) | â | â |
| [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor) | â | â |
| [Everything Toolbar](https://github.com/stnkl/EverythingToolbar) | â | Ã |## :running: To Start
## :bike: Install Scoop
### :computer: Step 1: Enable remote policy in PowerShell
```powershell
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
```### :gear: Step 2: Customize your Scoop directory
```powershell
$env:SCOOP='Your_Scoop_Path'
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User')
```> If you skip this step, all user installed Apps and Scoop itself will live in `c:/users/user_name/scoop`.
### :hammer: Step 3: Download and install Scoop
```powershell
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
```### :book: Step 4: Glance at quick-start by `scoop help`
For more information, please visit Scoop official site at đ đ
## :car: Install Apps from this bucket
### :train: Step 1: Install Aria2 to accelerate downloading
```powershell
scoop install aria2
```### :ticket: Step 2: Install Git to add new repositories
```powershell
scoop install git
```if you are using VPN, you need to turn off aria2 before installing Apps
```powershell
scoop config aria2-enabled false
```### :airplane: Step 3: Add this wonderful bucket and update, mo-mo-da~ :kiss
```powershell
scoop bucket add scoopet https://github.com/Ovler-Young/Personal-scoop
scoop update
```### :rocket: Step 4: Install Apps
- Check the exact name of App by `scoop search`
```powershell
scoop search
```- Install Apps with assistance of plugin `scoop-completion`
```powershell
scoop install scoop-completion
scoop install
```> to use `scoop-completion`, just to hit `tab` after initial letters of App names
### :100: Step 5: List the official recommended buckets by `scoop bucket known`
```powershell
scoop bucket knownmain [default]
extras [strongly recommended]
versions
nightlies
nirsoft
php
nerd-fonts
nonportable
java
games
jetbrains
```## :m: Trivial
### Tweak with Parameters in Aria2
```powershell
scoop config aria2-enabled true
scoop config aria2-retry-wait 4
scoop config aria2-split 16
scoop config aria2-max-connection-per-server 16
scoop config aria2-min-split-size 4M
```