Put flip somewhere in your $PATH and chmod a+x it.
Copy fuck into ~/.bashrc.
| -- A global variable for the Hyper Mode | |
| k = hs.hotkey.modal.new({}, "F17") | |
| -- Trigger existing hyper key shortcuts | |
| k:bind({}, 'm', nil, function() hs.eventtap.keyStroke({"cmd","alt","shift","ctrl"}, 'm') end) | |
| -- OR build your own | |
| launch = function(appname) |
| #!/bin/sh | |
| # exit on any errors: | |
| set -e | |
| if [ $# -lt 1 ] | |
| then | |
| echo "Usage: $0 @pantheon-alias" | |
| exit 1 | |
| fi |
| # $VBOX_VERSION should probably be something like 4.3.10 or somesuch | |
| # | |
| FROM boot2docker/boot2docker-rootfs | |
| RUN apt-get install p7zip-full | |
| RUN mkdir -p /vboxguest && \ | |
| cd /vboxguest && \ | |
| curl -L -o vboxguest.iso http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso && \ | |
| 7z x vboxguest.iso -ir'!VBoxLinuxAdditions.run' && \ | |
| sh VBoxLinuxAdditions.run --noexec --target . && \ |
| BIN = node_modules/.bin | |
| # Combine, ngmin and minify all of our own scripts | |
| public/app.js: \ | |
| ng-app/providers/providers.js \ | |
| ng-app/providers/*.js \ | |
| ng-app/cucumber_pro.js \ | |
| ng-app/**/*.js | |
| ifdef DEBUG |