kasper/phoenix
Fork: 127 Star: 4383 (更新于 2024-11-01 08:15:31)
license: NOASSERTION
Language: Objective-C .
A lightweight macOS window and app manager scriptable with JavaScript
最后发布版本: 4.0.1 ( 2024-06-11 06:00:35)
Phoenix
A lightweight macOS window and app manager scriptable with JavaScript. You can also easily use languages which compile to JavaScript such as TypeScript. Phoenix aims for efficiency and a very small footprint. If you like the idea of scripting your own window or app management toolkit with JavaScript, Phoenix is probably going to give you the things you want. With Phoenix you can bind keyboard shortcuts and system events, and use these to interact with macOS.
- Current version: 4.0.1 (Changelog)
- Requires: macOS 10.14 or higher
Note: the default master
branch will always be stable.
Key Features
- highly customisable, write your own configuration
- bind keyboard shortcuts and system events to your callback functions
- control and interact with your screens, spaces, mouse, apps and windows
- log messages, deliver notifications, display content or ask input with modals
- run external commands like you would in the command line
Install
- Download Phoenix
- See previous releases
To install, extract the downloaded archive and just drag-and-drop Phoenix to your Applications
folder. When you run Phoenix for the first time, you will be asked to allow it to control your UI. macOS will ask you to open Privacy & Security
in System Settings. Once open, go to the Accessibility
section and enable with the toggle next to Phoenix. An admin account is required to accomplish this.
Alternatively, if you have Homebrew installed, you can simply run brew install --cask phoenix
.
Uninstall
To uninstall Phoenix, delete the app from your Applications
folder. The configuration file created by Phoenix itself is located in your home folder. Delete ~/.phoenix.js
and any related configurations if desired. For developers, you may also need to delete ~/.phoenix.debug.js
.
Application preferences are stored in ~/Library/Preferences/org.khirviko.Phoenix.plist
. For developers, in ~/Library/Preferences/org.khirviko.Phoenix.debug.plist
.
If you have used the storage, also delete the file ~/Library/Application Support/Phoenix/storage.json
. Again for developers, you may also need to delete ~/Library/Application Support/Phoenix/storage.debug.json
.
For uninstalling additional support files, see the following folders:
~/Library/Application Scripts/org.khirviko.Phoenix.Launcher
~/Library/Caches/org.khirviko.Phoenix
~/Library/Containers/org.khirviko.Phoenix.Launcher
~/Library/HTTPStorages/org.khirviko.Phoenix
~/Library/WebKit/org.khirviko.Phoenix
# For developers
~/Library/Application Scripts/org.khirviko.Phoenix.Launcher.debug
~/Library/Caches/org.khirviko.Phoenix.debug
~/Library/Containers/org.khirviko.Phoenix.Launcher.debug
~/Library/HTTPStorages/org.khirviko.Phoenix.debug
~/Library/WebKit/org.khirviko.Phoenix.debug
Usage
Phoenix lives on your status bar (or as a background daemon) and can be scripted in JavaScript (or languages which compile to JavaScript such as TypeScript).
See the documentation to get started with your script. Your script should reside in ~/.phoenix.js
— the file will be created when you launch Phoenix for the first time. Alternatively — if you prefer — you may also have your script in ~/Library/Application Support/Phoenix/phoenix.js
or ~/.config/phoenix/phoenix.js
. For ideas, see what other people have built in their configurations in the Wiki. Feel free to add your own configuration to the Wiki to show other people the nice things you can do. Previous configurations (<= 1.5) are not compatible with 2.0, see Changelog for what changes are needed.
Development
You will need some basic knowledge about installing the required languages and tools. If you need help, do not hesitate to ask! To get started, you will need:
- Git
- Xcode 15 or higher
- Xcode command line tools
First clone the repository from a terminal:
git clone https://github.com/kasper/phoenix.git
cd phoenix
To develop Phoenix, open Phoenix.xcworkspace
in Xcode. Install Xcode from the App Store, if you do not already have it installed. You will also need Xcode command line tools — you will be prompted for this. Everything else should work as is — you can develop, debug, test, build and run Phoenix straight from Xcode.
For code formatting, Phoenix uses ClangFormat. You will need to have it in your path to be able to make sure any code changes align with the formatting rules. If you do not have ClangFormat installed, the build process will simply skip linting.
To install Phoenix from the source, you will need to build the workspace from a terminal:
xcodebuild -workspace Phoenix.xcworkspace \
-scheme Phoenix \
-configuration Release \
SYMROOT="$PWD/build/" \
clean build
Once complete, you will find a newly built Phoenix app in build/Release/
. After this, you can follow the normal install guide.
For a debug build, change the -configuration
flag to Debug
in the above command. This will place a debug build of the app in build/Debug
.
Phoenix manages dependencies with CocoaPods. Note that you do not need CocoaPods for basic development. However, if you want to install new pods or update existing ones, you will also need:
- Ruby (3.3.3 or higher), it is recommended that you manage Ruby versions with for instance rbenv
- Bundler
- CocoaPods
Install Bundler, if you do not already have it installed. To install CocoaPods and its dependencies, use Bundler inside the phoenix
directory to install the required Ruby gems according to the Gemfile
. Once complete, you can install the pods listed in the Podfile
with CocoaPods.
gem install bundler
bundle install
pod install
In addition to the Objective-C core, Phoenix also uses a JavaScript-based (5.1) library to implement additional features to the API. The minified library is included in the repository in Phoenix/phoenix-min.js
so that everything works as is. However, if you want to develop features for this library, you will also need:
- Node.js (22.2.0 or higher), it is recommended that you manage Node.js versions with for instance NVM
Install the development packages listed in package.json
.
npm install
To build phoenix-min.js
from the source, run the command npm run build
in the root directory. NPM will then build the source from library/src/
and install the new library to Phoenix/phoenix-min.js
. For convenience, this is also handled automatically by Xcode when you build Phoenix.
Documentation
The documentation for Phoenix is built from the docs/
directory using Docusaurus. To develop the documentation locally, navigate to the directory and run the following:
npm install
npm start
Contributing
Feel free to contribute to this project by creating issues, pull requests and editing the Wiki. See the guidelines.
Contact
If you have any questions, feedback or just want to say hi, you can open an issue, start a discussion, email or message on Threads.
Thanks
Phoenix is currently being developed by Kasper Hirvikoski (@kasper) with the generous help of contributions made by many individuals. It was originally authored by Steven Degutis (@sdegutis). As it stands now, it has been rewritten from the ground up by Kasper Hirvikoski.
License
Released under the MIT License. See license.
最近版本更新:(数据更新于 2024-09-01 11:21:26)
2024-06-11 06:00:35 4.0.1
2023-05-19 20:16:08 4.0.0
2022-02-27 02:20:09 3.0.0
2021-10-24 21:35:50 2.6.8
2021-03-22 04:15:11 2.6.7
2021-01-25 00:01:50 2.6.6
2020-11-29 21:53:57 2.6.5
2020-06-14 23:14:16 2.6.4
2020-01-25 06:12:55 2.6.3
2018-06-08 03:44:38 2.6.2
kasper/phoenix同语言 Objective-C最近更新仓库
2024-10-05 20:03:05 roothide/Bootstrap
2024-09-15 10:49:02 focus-editor/focus
2024-09-02 19:28:18 opa334/TrollStore
2024-08-31 08:33:55 facebookincubator/SocketRocket
2024-08-22 18:45:46 SDWebImage/SDWebImage
2024-07-03 06:23:17 ccgus/fmdb