diff --git a/install/brew.sh b/install/brew.sh index 7c66d0d4..d3653dab 100755 --- a/install/brew.sh +++ b/install/brew.sh @@ -5,8 +5,10 @@ brew tap homebrew/php # install additional brew packages -- see _install.sh too brew install curl +brew install fasd brew install ffmpeg brew install ghostscript +brew install git-extras brew install git-flow brew install httpd brew install imagemagick diff --git a/slate.js b/slate.js index e3318b08..5629dbc1 100644 --- a/slate.js +++ b/slate.js @@ -32,7 +32,6 @@ var chrome = slate.operation('focus', { app: 'Google Chrome' }); var mail = slate.operation('focus', { app: 'Mail' }); var fork = slate.operation('focus', { app: 'ForkLift' }); var things = slate.operation('focus', { app: 'Things' }); -var macvim = slate.operation('focus', { app: 'MacVim' }); var tyme = slate.operation('focus', { app: 'Tyme' }); @@ -151,6 +150,13 @@ var desktop = slate.operation('move', { height: '800' }); +var large = slate.operation('move', { + x: 'screenOriginX', + y: 'screenOriginY', + width: '1440', + height: '900' +}); + var fullhd = slate.operation('move', { x: 'screenOriginX', y: 'screenOriginY', @@ -201,7 +207,6 @@ slate.bind('c' + hyper, chrome, false); slate.bind('m' + hyper, mail, false); slate.bind('f' + hyper, fork, false); slate.bind('t' + hyper, things, false); -slate.bind('v' + hyper, macvim, false); slate.bind('y' + hyper, tyme, false); // movements in modal mode with m @@ -212,7 +217,8 @@ slate.bind('j' + hyperModal, bottomhalf, false); slate.bind('1' + hyperModal, mobile, false); slate.bind('2' + hyperModal, tablet, false); slate.bind('3' + hyperModal, desktop, false); -slate.bind('4' + hyperModal, fullhd, false); +slate.bind('4' + hyperModal, large, false); +slate.bind('5' + hyperModal, fullhd, false); slate.bind('space' + hyperModal, fullscreen, false); slate.bind('f' + hyperModal, fullheight, false);