No project description provided
Project description
macdefaultbrowsy
A command-line tool and package (written in Python) for macOS that allows you to view installed browsers and set the default web browser, with automatic dialog confirmation.
Features
- List all installed web browsers with the current default marked with
* - Set any browser as the default with a simple command
- Automatically confirms the system dialog (no manual clicking required)
- Built as a universal binary (Intel + Apple Silicon)
- Simple installation via Homebrew or manual install
Installation
uv pip install --system macdefaultbrowsy
or
pip install git+https://github.com/twardoch/macdefaultbrowsy
Usage
Command Line
List all browsers
macdefaultbrowsy
Output example:
chrome
firefox
* safari
edge
Set default browser
macdefaultbrowsy chrome
The tool will automatically set Chrome as your default browser and confirm the system dialog.
Python API
from macdefaultbrowsy import macdefaultbrowsy
# Get the current default browser
current = macdefaultbrowsy.read_default_browser()
print(f"Current default browser: {current}")
# List all available browsers
browsers = macdefaultbrowsy._get_available_browsers()
print("Available browsers:")
for name in sorted(browsers.keys()):
print(f" {name}")
# Set a new default browser
success = macdefaultbrowsy.set_default_browser("chrome")
if success:
print("Successfully set Chrome as default browser")
else:
print("Failed to set default browser")
How it Works
The tool uses the macOS Launch Services API to:
- Query all installed applications that can handle HTTP/HTTPS URLs
- Get the current default browser
- Set a new default browser for both HTTP and HTTPS schemes
When setting a new default browser, the tool also uses AppleScript automation to automatically click the confirmation button in the system dialog, providing a seamless experience.
Development
To capture a snapshot of the codebase:
npx repomix -i ".giga,.cursorrules,.cursor,*.md" -o llms.txt .
License
This project is licensed under the MIT License - see the LICENSE file for details.
References
- Check macdefaultbrowser for a similar tool written in Swift.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file macdefaultbrowsy-2.0.3.tar.gz.
File metadata
- Download URL: macdefaultbrowsy-2.0.3.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d944486d9a594a2df2574ece493f691a4fbbd4f34ec0d6e80b46fe8fbe2cabb1
|
|
| MD5 |
12946337c0d427eba500d9521eba849b
|
|
| BLAKE2b-256 |
c436118ec7f9b9c45129caf20ab62ddcc1fc30ecdde8684623ac795c2595c28c
|
File details
Details for the file macdefaultbrowsy-2.0.3-py3-none-any.whl.
File metadata
- Download URL: macdefaultbrowsy-2.0.3-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edc8eeb931ff6005da18f7d4a5826bf55388c9176b58b1395be63d8775059987
|
|
| MD5 |
d83c77c52a795660b167f02288b83600
|
|
| BLAKE2b-256 |
6cea725374d072631392399c88f42b0887fc19ec5711ac244843dd933b887c80
|