start new:
tmux
start new with session name:
tmux new -s myname
| ! modify CapsLock to Control, and Shift+CapsLock to CapsLock | |
| ! https://wiki.archlinux.org/index.php/Xmodmap#Modifier_keys | |
| clear lock | |
| clear control | |
| clear mod1 | |
| add control = Caps_Lock Control_L Control_R | |
| keycode 66 = Control_L Caps_Lock NoSymbol NoSymbol | |
| ! swap right control and right alt | |
| ! http://askubuntu.com/questions/237564/remap-right-alt-to-behave-as-right-ctrl |
| " ---------------------- USABILITY CONFIGURATION ---------------------- | |
| " Basic and pretty much needed settings to provide a solid base for | |
| " source code editting | |
| " don't make vim compatible with vi | |
| set nocompatible | |
| " turn on syntax highlighting | |
| syntax on | |
| " and show line numbers |
| # -*- coding: utf-8 -*- | |
| """ | |
| Python Script to download the Chrome Extensions (CRX) file directly from the google chrome web store. | |
| Referred from http://chrome-extension-downloader.com/how-does-it-work.php | |
| """ | |
| from __future__ import division | |
| import argparse | |
| import requests |