Scripts: atc.sh - Listen to LiveATC in your terminal. https://tuxs.me/sh/atc.sh ba.sh - brilliant guide to the 50 most useful bash commands. https://tuxs.me/sh/ba.sh bn.sh - better notes - like cn.sh - but better because it does everything cn.sh does with 2 cloud storage providors. https://tuxs.me/sh/bn.sh cn.sh - cloud notes. Sync your notes from the CLI to the cloud using a super simple script and rclone. https://tuxs.me/sh/cn.sh da.sh - dash(board). Comprehensive weather and rss feeds. https://tuxs.me/sh/da.sh do.sh - do sh(it) like take notes, set reminders and track tasks. https://tuxs.me/sh/do.sh edits.sh - edit remote files over ssh using your favorite tricked out editor on your very own computer. https://tuxs.me/sh/edits.sh en.sh - encrypted notes : great for storing your birthday present list but probably not so good for missile launch codes. https://tuxs.me/sh/en.sh fi.sh find files fairly fast. https://tuxs.me/sh/fi.sh flt.sh - track flights and listen to ATC from the terminal even when you aren't in a terminal. https://tuxs.me/sh/flt.sh gn.sh - Get Notes from Github. https://gn.tuxs.me/ iwant.sh - i want software (to be installed for me just by using this script.) https://tuxs.me/sh/iwant.sh hu.sh - listen to podcasts, radio, and music files https://tuxs.me/sh/hu.sh log.sh - quickly add daily log entries to your gn directory and sync to github. https://tuxs.me/sh/log.sh nf.sh - notes finder. https://tuxs.me/sh/nf.sh ollama.sh - easily use ollama to run LLM models locally from the terminal. https://tuxs.me/sh/ollama.sh pw.sh - Terminal password manager https://tuxs.me/sh/pw.sh rs.sh - keep up with all your rss feeds right from your terminal. https://tuxs.me/sh/rs.sh run.sh - one script to -r-u-l-e- run them all. https://tuxs.me/sh/run.sh scb.sh - a nice bash wrapper for the SC and SC-IM terminal spreadsheet tool. https://tuxs.me/sh/scb.sh tm.sh - TextMark - text based bookmark manager https://tuxs.me/sh/tm.sh wk.sh - Terminal Wiki https://tuxs.me/sh/wk.sh wx.sh - Weather from wttr.in, TAFs and METARs from any airport, 3 coldest places in world and US and conditions from ski areas around thee world. https://tuxs.me/sh/wx.sh sh.txt List of scripts. https://tuxs.me/sh/sh.txt BULK INSTALL: ## INSTALL: for s in rs wx cn hu flt; do curl -sSL "https://tuxs.me/sh/$s.sh" -o "$s.sh" && chmod +x "$s.sh"; done OR: for s in rs wx cn hu flt; do curl -sSL "https://tuxs.me/sh/$s.sh" -o "$s" && chmod +x "$s" && sudo mv "$s" /usr/local/bin/; done