Skip to content

Instantly share code, notes, and snippets.

View gitfool's full-sized avatar
💭
🍺

Sean Fausett gitfool

💭
🍺
View GitHub Profile
@gitfool
gitfool / aws-sso-cli.json
Created July 30, 2025 03:05
Scoop manifest for aws-sso-cli
{
"version": "2.0.3",
"description": "A powerful tool for using AWS Identity Center for the CLI and web console",
"homepage": "https://github.com/synfinatic/aws-sso-cli",
"license": "GPL-3.0-only",
"architecture": {
"64bit": {
"url": "https://github.com/synfinatic/aws-sso-cli/releases/download/v2.0.3/aws-sso-2.0.3-windows-amd64.exe#/aws-sso.exe",
"hash": "fb72cd34b1bd82addfc1d34e3ef72aac0523f79df223d9f3ca2541d651be6df4"
},
@gitfool
gitfool / patch.sh
Last active December 6, 2021 23:02
Patch Fira Code for Nerd Fonts
#!/bin/bash
git clone https://github.com/tonsky/FiraCode.git
git clone https://github.com/ryanoasis/nerd-fonts.git
version=6.2 && curl -fsSL https://github.com/tonsky/FiraCode/releases/download/$version/Fira_Code_v$version.zip -o FiraCodeBinaries.zip
rm -rf FiraCodeBinaries && unzip FiraCodeBinaries.zip -d FiraCodeBinaries && rm -f FiraCodeBinaries.zip
cp FiraCodeBinaries/ttf/FiraCode-Bold.ttf nerd-fonts/src/unpatched-fonts/FiraCode/Bold
cp FiraCodeBinaries/ttf/FiraCode-Light.ttf nerd-fonts/src/unpatched-fonts/FiraCode/Light
@gitfool
gitfool / .bashrc
Last active May 2, 2025 06:42
dotfiles
export HISTCONTROL='ignorespace:ignoredups'
export HISTIGNORE='bg:fg:clear:exit:h:history:l:l[ls]:pwd'
export HISTSIZE=10000
export AWS_PAGER=
export EDITOR=vi
export KUBECONFIG=$(find ~/.kube -maxdepth 1 -type f 2>/dev/null | grep -E 'config[^.]*$' | xargs -I{} -r echo -n ':{}')
export PATH=$HOME/.dotnet/tools:$PATH
alias h='history'
@gitfool
gitfool / settings.json
Last active June 20, 2024 23:21
Windows Terminal settings
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema-preview",
"actions":
[
{
"command": "paste",
"id": "User.paste",
"keys": "ctrl+v"
},