Skip to content

Commit

Permalink
Add .nvmrc, update gui apps in example
Browse files Browse the repository at this point in the history
  • Loading branch information
robatron committed Feb 28, 2024
1 parent 923fb68 commit 1ca8e71
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20
4 changes: 2 additions & 2 deletions examples/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ createTaskTree(
require('./phases/installPython'),
require('./phases/installTerm'),
require('./phases/installDotfiles'),
require('./phases/installDocker'),
// require('./phases/installGUIApps')
// require('./phases/installDocker'),
require('./phases/installGUIApps')
]),
exports,
);
16 changes: 11 additions & 5 deletions examples/phases/installGUIApps.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@ module.exports = definePhase(
'installMacGuiApps',
ACTIONS.INSTALL_PACKAGES,
[
'deluge',
'google-chrome',
'homebrew/cask-drivers/logitech-options',
'iterm2',
// 'deluge',
// 'google-chrome',
// 'homebrew/cask-drivers/logitech-options',
// 'iterm2',

// Prevent the Mac from sleeping
'keepingyouawake',
'spectacle',

// Window management
'rectangle',

// Code editor
'visual-studio-code',
],
{
Expand Down

0 comments on commit 1ca8e71

Please sign in to comment.