Shell

curl

ffmpeg

vlc [cli mode]

youtube-dl

gpg

beets

Android emulator cli

SSHFS (macos setup)

$ brew install --cask macfuse
$ brew tap gromgit/fuse && brew install gromgit/fuse/sshfs-mac
$ sshfs -V # test if installed
$ sshfs -o allow_other,default_permissions <server-dir> <local-dir> # follow prompts for permission

On linux, sshfs should be preinstalled, if not just use default package manager

Notify (macos)

osascript -e 'display notification "Notification text" with title "Title"'

Screen

# ssh into remote server
ssh remote-server

# start screen
screen

# screen help
<c-a>?

# create a new window
<C-a>c

# Switch between windows by number
<C-a>0
<C-a>1..9

# Switch
<C-a>n # to next
<C-a>p # or previous window

# Create a new window in split
<C-a>| && <C-a><Tab> && <C-a>c # Vertical
<C-a>S && <C-a><Tab> && <C-a>c # Horizontal

# Close all splits
<C-a>Q