An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# 🍨 Scoopet 🍨




















A Bucket for the Best Windows Package Manager
Scoop :
For my personal use.



English |
įŽ€äŊ“中文


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 known

main [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
```