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

Add close-apps extension #15929

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions extensions/close-apps/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
13 changes: 13 additions & 0 deletions extensions/close-apps/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/close-apps/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/close-apps/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Close Apps Changelog

## [Initial Version] - {PR_MERGE_DATE}
3 changes: 3 additions & 0 deletions extensions/close-apps/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Close Apps

Script that closes all apps
Binary file added extensions/close-apps/assets/close-all.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/close-apps/bun.lockb
Binary file not shown.
29 changes: 29 additions & 0 deletions extensions/close-apps/notes/video#1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Raycast overview

- What it is
- Productivity & util stuff for mac
- How I access it
- What I can do with it
- Launch apps
- Run commands & scripts
- App store, which integrates with the rest of your nac & its apps pretty well

## Examples
- `npm search`
- `kill` app
- `My Schedule`
- `toggle light/dark mode`
- `Quick reminder/timer/note`

## Hotkeys
- option + C for chatGPT
- option + V for clipboard history
- option + E for emoji picker
- option + G for GIF search

## What I'm making
- Extension that kills all open (GUI) apps
- Very quickly realised I had to create a feature to whitelist apps that the script should never close
- Initial creation & testing of this extension would be very annoying without the whitelist feature💀

## Show branch with UI Refactor
Loading
Loading