Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(apps): add IINA and Folder Hub #106

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
}