start new:
tmux
start new with session name:
tmux new -s myname
| import Foundation | |
| import ShellOut | |
| do { | |
| try shellOut(to: "SwitchAudioSource -a") | |
| } catch { | |
| print("Couldn't find SwitchAudioSource.") | |
| print("Please install switchaudio-osx via homebrew.") | |
| exit(1) | |
| } |
| <?php | |
| /* | |
| OCP - Opcache Control Panel (aka Zend Optimizer+ Control Panel for PHP) | |
| Author: _ck_ (with contributions by GK, stasilok) | |
| Version: 0.1.7 | |
| Free for any kind of use or modification, I am not responsible for anything, please share your improvements | |
| * revision history | |
| 0.1.7 2015-09-01 regex fix for PHP7 phpinfo | |
| 0.1.6 2013-04-12 moved meta to footer so graphs can be higher and reduce clutter |
| #!/bin/bash | |
| # This hook is run after a new virtualenv is activated. | |
| # ~/.virtualenvs/postmkvirtualenv | |
| libs=( PyQt4 sip.so ) | |
| python_version=python$(python -c "import sys; print (str(sys.version_info[0])+'.'+str(sys.version_info[1]))") | |
| var=( $(which -a $python_version) ) | |
| get_python_lib_cmd="from distutils.sysconfig import get_python_lib; print (get_python_lib())" |