Skip to content

GProulx/scoop-the-business

 
 

Repository files navigation

Scoop the Business Bucket

GitHub GitHub last commit GitHub pull requests GitHub issues GitHub contributors

logo scoop-the-business

Another bucket for scoop

🚧

It is still a Work in progress

🚧

What is Scoop

Scoop is a command-line installer for windows and will let you install the tools you know and love

What is a "Bucket" for Scoop

A "bucket" is simply a repository of applications that are shared to be known and installed using the Scoop cli

Does the applications are updated periodically

YES... We use an GitHub actions that execute many times a day to finds all the newest application versions available and updates the bucket.

Installing Scoop and use our "Bucket"

📝

Make sure PowerShell 5 (or later, include PowerShell Core) and .NET Framework 4.5 (or later) are installed

📝

It's really easy to install and configure Scoop to use our bucket. Just follow the code

Set-ExecutionPolicy RemoteSigned -scope CurrentUser
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')

scoop bucket add business 'https://github.com/brave-simpletons/scoop-the-business.git'

⚠️ If you do not have 'Git' installed, you will received this error : "Git is required for buckets" The solution is simple, install Git using the next command:

scoop install git

And now, you can retry the previous command: scoop bucket add business 'https://github.com/brave-simpletons/scoop-the-business.git' ⚠️

Using scoop

Getting help

The help is already included in the CLI

scoop help

For more information, you can also read this Scoop Guide

Searching an app

Sure, you could search our GitHub repo... But it could be more easier and faster to use the CLI 😉

# scoop search app-name app-name2 [...]
scoop search 7zip vscode

Installing/Uninstall an application

When you know what app to install:

# scoop install app-name app-name2 [...]
scoop install 7zip vscode

When you know what app to uninstall:

# scoop uninstall app-name app-name2 [...]
scoop uninstall 7zip vscode

Updating

Updating scoop itself and the buckets

scoop update

Updating specific application(s)

#scoop update app-name app-name2 [...]
scoop update 7zip vscode

Cleaning the old app versions

Since the app can be installed separately, sometimes you could have a lot of version. It could be a good idea to done some cleanup using:

#scoop cleanup app-name app-name2 [...]
scoop cleanup 7zip vscode

Also you could clean the cache of the downloaded application for a specific app or for all

#scoop cache rm app-name [or *]
scoop cache rm 7zip

#scoop cache rm *

What Apps that 'scoop-the-business' suggests

All the app that we use are listed in the folder bucket. If one is missing do not hesitate to contribute or ask us and... we will do it when we will find the time 😄

Contributing

You think something is missing here ? Follow How to Contribute page and submit your PR 😉

References used for this project

About

Another bucket for scoop

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PowerShell 100.0%