Skip to content

Commit

Permalink
Merge pull request #106 from Avivbens/iina-and-folder-hub
Browse files Browse the repository at this point in the history
fix(apps): add `IINA` and `Folder Hub`
  • Loading branch information
Avivbens authored Jul 24, 2024
2 parents ee02ac1 + aac7884 commit c8ef2e5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
8 changes: 8 additions & 0 deletions src/commands/install/config/apps-groups/apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,14 @@ export const APPS: Readonly<IAppSetup[]> = [
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',
Expand Down
7 changes: 7 additions & 0 deletions src/commands/install/config/apps-groups/media.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ export const MEDIA_APPS: Readonly<IAppSetup[]> = [
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',
Expand Down
2 changes: 0 additions & 2 deletions zsh/extends/.zshrc.extends.git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 1 addition & 2 deletions zsh/extends/.zshrc.extends.redis.sh
Original file line number Diff line number Diff line change
@@ -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)
}

0 comments on commit c8ef2e5

Please sign in to comment.