diff --git a/src/commands/install/config/apps-groups/apps.ts b/src/commands/install/config/apps-groups/apps.ts index 652ef8d..dc424d2 100755 --- a/src/commands/install/config/apps-groups/apps.ts +++ b/src/commands/install/config/apps-groups/apps.ts @@ -164,6 +164,14 @@ export const APPS: Readonly = [ openUrl: () => `open https://www.bresink.com/osx/TinkerTool.html`, commands: () => [OPEN_BROWSER_LINK('https://www.bresink.com/osx/0TinkerTool/download.php')], }, + { + name: 'Folder Hub', + description: 'Quickly access your favorite folders from the Notch Bar', + group: 'apps', + tags: ['super-user'], + openUrl: () => `open https://www.finderhub.app/`, + commands: () => [OPEN_APP_STORE_APP_LINK('folder-hub-file-browser/id6473019059')], + }, { name: 'Dropover', description: 'Drag and drop files between apps with quick actions', diff --git a/src/commands/install/config/apps-groups/media.ts b/src/commands/install/config/apps-groups/media.ts index d25b7ad..dc8793e 100755 --- a/src/commands/install/config/apps-groups/media.ts +++ b/src/commands/install/config/apps-groups/media.ts @@ -10,6 +10,13 @@ export const MEDIA_APPS: Readonly = [ openUrl: () => BREW_HOME('downie', true), commands: () => [BREW_CASK('downie')], }, + { + name: 'IINA', + group: 'media', + description: 'Open-source modern video player for macOS', + openUrl: () => BREW_HOME('iina', true), + commands: () => [BREW_CASK('iina')], + }, { name: 'VLC', group: 'media', diff --git a/zsh/extends/.zshrc.extends.git.sh b/zsh/extends/.zshrc.extends.git.sh index 79a3174..3b29816 100755 --- a/zsh/extends/.zshrc.extends.git.sh +++ b/zsh/extends/.zshrc.extends.git.sh @@ -112,8 +112,6 @@ function clonets() { # remove all local branches but the master & staging alias grab="git branch | egrep -v 'master|staging' | xargs git branch -D" -git config --global push.autoSetupRemote true - # show current email config echo "\nCurrent git email config:" git config --global -l | grep 'email' diff --git a/zsh/extends/.zshrc.extends.redis.sh b/zsh/extends/.zshrc.extends.redis.sh index 013b570..9de7661 100755 --- a/zsh/extends/.zshrc.extends.redis.sh +++ b/zsh/extends/.zshrc.extends.redis.sh @@ -1,6 +1,5 @@ #! /usr/bin/env zsh function sredis() { - # osascript -e 'tell app "Terminal" to do script "cd /tmp && redis-server"' - cd /tmp && redis-server + (cd /tmp && redis-server) }