Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
mkdir ~/.ssh/
mkdir -p ~/.config/fish
apt update && apt upgrade -y
apt install -y curl wget nano git exa python3 python3-pip
apt install -y fish fzf
python3 -m pip install --user ansible ansible-lint
ansible-galaxy collection install community.general
#!/bin/bash
apt update && apt upgrade -y
apt install -y zsh curl wget nano git exa python3 python3-pip
echo "LC_ALL=en_US.UTF-8" | sudo tee -a /etc/environment
echo "en_US.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
echo "LANG=en_US.UTF-8" | sudo tee -a /etc/locale.conf
sudo locale-gen en_US.UTF-8
#!/usr/bin/env bash -ex
set -euo pipefail
shopt -s inherit_errexit nullglob
YW=$(echo "\033[33m")
BL=$(echo "\033[36m")
RD=$(echo "\033[01;31m")
BGN=$(echo "\033[4;92m")
GN=$(echo "\033[1;92m")
DGN=$(echo "\033[32m")
CL=$(echo "\033[m")