(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
$ sudo npm install -g hexo-cli
$ hexo -v
hexo-cli: 0.1.9
| #!/usr/local/bin/python3 | |
| import sys | |
| import os | |
| from glob import glob | |
| from subprocess import call | |
| def log(msg): | |
| print('[PVR2PNG] ' + msg) | |
| root = sys.argv[1] |