What’s Scoop?

Package manager for windows. See GitHub.

Getting Started

# set execution policy to allow execution of remote scripts
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
# install scoop
iwr -useb get.scoop.sh | iex

Maintenance

# update all installed programs
scoop update *
# remove old versions
scoop cleanup -k

Programs

# add other buckets
scoop bucket add extras
 
# essentials
scoop install git sudo curl gow fzf ripgrep
scoop install altdrag greenshot
scoop install syncthing syncthingtray
 
# ux
scoop install notepadplusplus
scoop install screentogif
scoop install Capture2Text # ocr tool
 
# misc
scoop install starship # shell prompt
scoop install keepassxc
scoop install redshift
scoop install vlc
scoop install ditto # clipboard tool
scoop install powertoys # windows power user features
scoop install autohotkey 
 
# misc
scoop install obsidian
scoop install spotify
scoop install obs-studio
 
# developer IDEs
scoop install neovim
scoop install vscode
scoop install jetbrains-toolbox
 
# developer tooling
scoop install bruno
scoop install mitmproxy
scoop install nodejs-lts yarn
scoop install kubectl helm openshift-origin-client
scoop install docker docker-machine docker-compose
 
# databases
scoop install robo3t
scoop install mongodb
scoop install postgresql

Misc

Install Nerd Fonts

scoop bucket add nerd-fonts
scoop install JetBrains-Mono

Setup Java

# setup java
scoop bucket add java
scoop install temurin24-jdk
scoop install maven gradle
 
# switch java version
scoop reset temurin11-jdk
scoop reset temurin8-jdk