141 lines
4.5 KiB
Bash
141 lines
4.5 KiB
Bash
#!/bin/bash
|
|
# Last updated: 7/4/2026
|
|
# This was designed for Linux Mint XX.x; most of it should work for other distros. the desktop-environment.sh code will probably need to be different for anything that's not Cinnamon.
|
|
# Some things here require manual install because they aren't in apt repositories, don't have another stable installation source, and I don't want to rely on a static download location.
|
|
# These things will all be put into a TODO.md file in the current directory along with brief notes/instructions.
|
|
|
|
touch todo.md
|
|
sudo mkdir -p /usr/local/bin
|
|
sudo chmod 755 /usr/local/bin
|
|
sudo apt-get update
|
|
|
|
INSTALL_USER=$(whoami)
|
|
|
|
#######################
|
|
## DEV/PROGRAMMING ##
|
|
## ESSENTIAL TOOLS ##
|
|
#######################
|
|
echo "## dev/programming & essential tools/programs" | tee todo.md -a
|
|
echo "* install drivers & such" | tee todo.md -a
|
|
|
|
# Install some apt packages
|
|
sudo apt-get upgrade -y
|
|
sudo apt-get install -y curl git jq build-essential unzip tree # for development
|
|
sudo apt-get install -y ripgrep # I honestly don't remember why I installed these
|
|
echo "* globstar?" | tee todo.md -a
|
|
|
|
# Install Python & uv (package/version manager)
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
source $HOME/.local/bin/env
|
|
# install latest version of python with default `python` and `python3` executables
|
|
uv python install --default
|
|
|
|
# Node.js 24 (with nvm - https://github.com/nvm-sh/nvm)
|
|
# also required for pyright language server (neovim)
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.5/install.sh | bash
|
|
\. "$HOME/.nvm/nvm.sh" # in lieu of restarting the shell
|
|
nvm install 24
|
|
|
|
# install a nerd font (provides special symbols for zsh/starship)
|
|
sudo mkdir -p /usr/share/fonts/truetype/DejaVuSansMono/
|
|
sudo unzip ./utils/DejaVuSansMono.zip /usr/share/fonts/truetype/DejaVuSansMono/
|
|
|
|
# zsh (better shell)
|
|
echo "* add zsh and starship, etc. + nerd font" | tee todo.md -a
|
|
sudo apt-get install -y zsh
|
|
sudo chsh $INSTALL_USER -s /bin/zsh
|
|
cp ./utils/dotzshrc "$HOME/.zshrc"
|
|
|
|
# starship (shell prompt)
|
|
echo 'y' | $(curl -sS https://starship.rs/install.sh | sudo sh)
|
|
# echo 'eval "$(starship init zsh)"' | tee "$HOME/.zshrc" -a # should already be in zshrc
|
|
mkdir -p "$HOME/.config"
|
|
cp ./utils/starship.toml "$HOME/.config/starship.toml"
|
|
|
|
# Neovim
|
|
echo "* install neovim & clone config" | tee todo.md -a
|
|
|
|
# Other editor(s) (TBD)
|
|
echo "* investigate and install other IDE(s)" | tee todo.md -a
|
|
|
|
# Brave browser
|
|
curl -fsS https://dl.brave.com/install.sh | sh
|
|
|
|
# GitHub SSH keys
|
|
echo "* generate new SSH key and add to GitHub?" | tee todo.md -a
|
|
|
|
# things I'd rather not install but have to
|
|
# Discord (chat)
|
|
echo "* install Discord (chat)" | tee todo.md -a
|
|
|
|
# Zoom (video call)
|
|
echo "* install Zoom (video call)" | tee todo.md -a
|
|
|
|
|
|
############################
|
|
## WORKFLOW/SMALL TOOLS ##
|
|
############################
|
|
echo "## workflow helpers, small tools, and utilities" | tee todo.md -a
|
|
|
|
# pbcopy/pbpaste (from macOS)
|
|
sudo apt-get install -y xclip
|
|
printf '#!/bin/bash \nxclip -selection clipboard' | sudo -u $INSTALL_USER tee /usr/local/bin/pbcopy
|
|
chmod 755 /usr/local/bin/pbcopy
|
|
printf '#!/bin/bash \nxclip -selection clipboard -o' | sudo -u $INSTALL_USER tee /usr/local/bin/pbpaste
|
|
chmod 755 /usr/local/bin/pbpaste
|
|
|
|
# WordNet & def utility
|
|
sudo apt-get install -y wordnet
|
|
printf '#!/bin/bash \nwn $1 -over' | sudo -u $INSTALL_USER tee /usr/local/bin/def
|
|
chmod 755 /usr/local/bin/def
|
|
|
|
# Artha (WordNet dictionary)
|
|
sudo apt-get install -y artha
|
|
|
|
# qpdf (pdf manipulation)
|
|
sudo apt-get install -y qpdf
|
|
|
|
# rndrmarkdown markdown renderer
|
|
sudo apt-get install -y pandoc
|
|
sudo -u $INSTALL_USER cp ./utils/rndrmarkdown /usr/local/bin/rndrmarkdown
|
|
sudo -u $INSTALL_USER chmod 755 /usr/local/bin/rndrmarkdown
|
|
echo 'alias rmd="rndrmarkdown"' | tee ~/.bashrc -a
|
|
|
|
# readline (for piping 1 line into wc)
|
|
printf '#!/bin/bash \necho "$(head -n $1 $2 | tail -n 1)"' | sudo -u $INSTALL_USER tee /usr/local/bin/rline
|
|
chmod 755 /usr/local/bin/rline
|
|
echo "* verify rline formatted correctly"
|
|
|
|
# Calc (command-line calculator)
|
|
sudo apt-get install -y calc
|
|
|
|
# OpenSSH server
|
|
sudo apt-get install -y openssh-server
|
|
|
|
# Wine (run windoze apps)
|
|
sudo add-apt-repository ppa:ubuntu-wine/ppa
|
|
sudo apt-get install -y wine
|
|
|
|
# Gpick (color picker)
|
|
sudo apt-get install -y gpick
|
|
|
|
# ksnip (screenshot)
|
|
sudo apt-get install -y ksnip
|
|
|
|
# btop (system resource monitor)
|
|
sudo apt-get install -y btop
|
|
|
|
|
|
##########################
|
|
## SPECIALTY PROGRAMS ##
|
|
##########################
|
|
source user-programs.sh
|
|
|
|
|
|
###########################
|
|
## DESKTOP ENVIRONMENT ##
|
|
###########################
|
|
# designed & tested on Cinnamon XX.x
|
|
source ./desktop-env.sh
|
|
|