Skip to content

Instantly share code, notes, and snippets.

@reginadiana
reginadiana / README-TEMPLATE.md
Last active May 13, 2024 17:37
Template sugestivo para documentação de projetos

Titulo ou Arte do Projeto

@santospatrick
santospatrick / terminal-oh-my-zsh.md
Last active August 20, 2023 05:00
Terminal with oh-my-zsh (Linux/Windows/MacOSX)

Terminal with oh-my-zsh (Linux/Windows/MacOSX)

Every step in this tutorial is required for making terminal look as the image below.

ZSH & OH-MY-ZSH

sudo apt-get install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
@YuriyGuts
YuriyGuts / linux-mint-install-everything.sh
Last active February 26, 2024 05:31
A script to install most of the necessary software on a fresh Linux Mint installation. Uses Google Drive to import settings for specific applications. Latest revision: Linux Mint 21.1 Vera / Ubuntu 22.04
#!/bin/bash
# =========== CONFIG =============
# Assuming we'll set the Google Drive folder to ~/GoogleDrive
GOOGLE_DRIVE_FOLDER=$HOME/GoogleDrive
# ================================
# =========== ESSENTIAL ALIASES ==========
INSTALL='sudo apt install --yes'