| Crates.io | bunnypmsl |
| lib.rs | bunnypmsl |
| version | 0.0.0-pre1 |
| created_at | 2026-01-08 15:31:49.200223+00 |
| updated_at | 2026-01-08 15:31:49.200223+00 |
| description | Custom fork of bunnylol.rs |
| homepage | https://github.com/daveio/bunnypmsl |
| repository | https://github.com/daveio/bunnypmsl |
| max_upload_size | |
| id | 2030469 |
| size | 1,307,088 |
bunnypmsl β Smart browser bookmarks with RustA modern rust clone of bunny1.
Enter gh facebook/react in your browser's address bar to open the React repository on GitHub.

Or run the CLI:
$ bunnypmsl gh facebook/react
Install from crates.io:
# Install both CLI and server (3.9MB)
$ cargo install bunnypmsl
# Install just the CLI (1.4MB - recommended for terminal use only)
$ cargo install bunnypmsl --features cli --no-default-features
# Install just the server (3.6MB - recommended for web server deployments)
$ cargo install bunnypmsl --features server --no-default-features
Or build from source:
# Clone the repository
$ git clone https://github.com/daveio/bunnypmsl.git
$ cd bunnypmsl
# Install both CLI and server
$ cargo install --path .
# Install just the CLI
$ cargo install --path . --features cli --no-default-features
# Install just the server
$ cargo install --path . --features server --no-default-features
Use bunnypmsl to open URLs directly from your terminal!
# Open GitHub
$ bunnypmsl gh
# Open Instagram Reels
$ bunnypmsl ig reels
# Open a specific GitHub repository
$ bunnypmsl gh facebook/react
# Preview URL without opening browser (dry-run)
$ bunnypmsl --dry-run gh facebook/react
# Output: https://github.com/facebook/react
# List all available commands with a beautiful table
$ bunnypmsl list
| CLI Command | What it does |
|---|---|
bunnypmsl gh |
Open GitHub homepage |
bunnypmsl gh facebook/react |
Open facebook/react repository |
bunnypmsl ig reels |
Open Instagram Reels |
bunnypmsl tw @facebook |
Open Twitter profile |
bunnypmsl r r/rust |
Open r/rust subreddit |
bunnypmsl --dry-run meta ai |
Print Meta AI URL without opening |
bunnypmsl --help |
Show help information |
bunnypmsl --version |
Show version information |
bunnypmsl list |
Display all commands in a formatted table |
For even faster access, add an alias to your shell configuration:
# Add to ~/.bashrc or ~/.zshrc
alias b="bunnypmsl"
# Then use it like this:
$ b ig reels
$ b gh facebook/react
$ b list
The bunnypmsl CLI supports optional configuration via a TOML file following the XDG Base Directory Specification.
Bunnypmsl uses different config file locations depending on how it's run:
For CLI and manual server usage (bunnypmsl serve):
~/.config/bunnypmsl/config.toml (or $XDG_CONFIG_HOME/bunnypmsl/config.toml if set)%APPDATA%\bunnypmsl\config.tomlFor system service (sudo bunnypmsl service install):
/etc/bunnypmsl/config.tomlThe config file is automatically created with sensible defaults when you first run bunnypmsl.
The CLI works perfectly fine without any configuration file. However, you can customize the following features:
Specify which browser to open URLs in:
# ~/.config/bunnypmsl/config.toml
browser = "firefox" # or "chrome", "chromium", "safari", etc.
If not specified, the system default browser is used.
Create your own personalized shortcuts:
[aliases]
work = "gh mycompany"
blog = "gh username/blog"
dotfiles = "gh username/dotfiles"
Then use them like any built-in command:
$ bunnypmsl work
# Opens: https://github.com/mycompany
$ bunnypmsl blog
# Opens: https://github.com/username/blog
Override Google as the fallback search engine:
default_search = "ddg" # Options: "google" (default), "ddg", "bing"
When a command isn't recognized, it will search using your configured engine instead of Google.
Track your recently used commands (enabled by default):
[history]
enabled = true
max_entries = 1000
History is stored at:
~/.local/share/bunnypmsl/history (or $XDG_DATA_HOME/bunnypmsl/history if set)%APPDATA%\bunnypmsl\historyHere's a full example with all available options:
# ~/.config/bunnypmsl/config.toml
# Browser to open URLs in (optional)
browser = "firefox"
# Custom command aliases (optional)
[aliases]
work = "gh mycompany"
blog = "gh username/blog"
dotfiles = "gh username/dotfiles"
notes = "gh username/notes"
# Default search engine when command not recognized (optional)
# Options: "google" (default), "ddg", "bing"
default_search = "ddg"
# Command history settings (optional)
[history]
enabled = true
max_entries = 1000
# Server configuration (for bunnypmsl serve) (optional)
[server]
port = 8000
address = "127.0.0.1" # Use "0.0.0.0" for network access
log_level = "normal" # Options: "normal", "debug", "critical", "off"
server_display_url = "https://bunny.example.com" # Public URL shown on bindings page
The CLI uses platform-appropriate directories for configuration and data:
| Platform | Type | Path |
|---|---|---|
| Linux/macOS | User Config | ~/.config/bunnypmsl/config.toml(or $XDG_CONFIG_HOME/bunnypmsl/config.toml) |
| Linux | System Config | /etc/bunnypmsl/config.toml(when running as system service) |
| Linux/macOS | Data | ~/.local/share/bunnypmsl/(or $XDG_DATA_HOME/bunnypmsl/) |
| Windows | Config | %APPDATA%\bunnypmsl\config.toml |
| Windows | Data | %APPDATA%\bunnypmsl\ |
After installing bunnypmsl, start the server:
$ bunnypmsl serve
Or use Docker:
$ git clone https://github.com/daveio/bunnypmsl.git
$ cd bunnypmsl
$ docker compose up -d
Or build from source:
$ git clone https://github.com/daveio/bunnypmsl.git
$ cd bunnypmsl
$ cargo run -- serve
For production use on Linux, install bunnypmsl as a systemd service that starts automatically on boot:
# Install bunnypmsl first
$ cargo install bunnypmsl
# Install as system service (requires sudo, Linux only)
# Default: localhost only (127.0.0.1)
$ sudo bunnypmsl service install
# For network access (production servers)
$ sudo bunnypmsl service install --network
# The installer will:
# - Create /etc/systemd/system/bunnypmsl.service
# - Create /etc/bunnypmsl/config.toml with server settings
# - Enable autostart on boot
# - Start the service immediately
# Manage the service
$ sudo bunnypmsl service status
$ sudo bunnypmsl service logs -f
$ sudo bunnypmsl service restart
# Uninstall
$ sudo bunnypmsl service uninstall
Network Access:
--network (default): Binds to 127.0.0.1 (localhost only, secure default)--network: Binds to 0.0.0.0 (accessible from network, for production servers)The service installer works on:
systemd (Ubuntu 16.04+, Debian 8+, CentOS 7+, etc.)macOS and Windows: Use Docker instead (see above) or run bunnypmsl serve directly.
For more details, see the Deployment Guide.
Open your web browser and navigate to http://localhost:8000/?cmd=fb to get redirected to Facebook.
Open http://localhost:8000/?cmd=gh daveio/bunnypmsl to be redirected to this repo.
bunnypmsl to be your default search engineYou can set your default search engine to http://localhost:8000/?cmd=%s and use bunnypmsl for everything. For this to work, you will need to have the server deployed and running locally or on a server.
Note: For best results, deploy bunnypmsl on a networked server accessible from all your devices, rather than just running it locally.
Note: iOS Safari does not support custom search engines, so you'll need to use Firefox (or another browser that does) instead.
| Command | Aliases | Description | Example |
|---|---|---|---|
gh |
β | Navigate to GitHub repositories | gh facebook/react |
gitlab |
gl |
Navigate to GitLab projects or search GitLab | gitlab gitlab-org/gitlab |
cargo |
crates |
Navigate to crates.io or search for Rust crates | cargo serde |
npm |
npmjs |
Navigate to npmjs.com or search for npm packages | npm react |
pypi |
pip |
Navigate to pypi.org or search for Python packages | pypi requests |
rubygems |
gem, gems |
Navigate to rubygems.org or search for Ruby gems | gem rails |
go |
golang, gopkg |
Navigate to pkg.go.dev or search for Go packages | go http |
nuget |
β | Navigate to nuget.org or search for .NET packages | nuget newtonsoft |
packagist |
composer |
Navigate to packagist.org or search for PHP packages | packagist symfony |
brew |
homebrew |
Navigate to formulae.brew.sh or search for Homebrew packages | brew wget |
choco |
chocolatey |
Navigate to community.chocolatey.org or search for Windows packages | choco git |
dockerhub |
docker |
Navigate to Docker Hub or search for container images | docker nginx |
| Command | Aliases | Description | Example |
|---|---|---|---|
rust |
β | Navigate to Rust documentation or search Rust std docs | rust HashMap |
python |
pydocs, py |
Navigate to Python documentation or search for Python resources | python list |
node |
nodejs |
Navigate to Node.js API documentation or specific module docs | node fs |
godocs |
β | Navigate to Go language documentation | godocs |
hack |
β | Navigate to Hack documentation or search Hack docs | hack async |
mdn |
β | Navigate to MDN Web Docs or search for web development resources | mdn flexbox |
stackoverflow |
so |
Navigate to Stack Overflow or search for programming questions | so rust ownership |
| Command | Aliases | Description | Example |
|---|---|---|---|
ig |
instagram |
Navigate to Instagram profiles, search, or access Reels/Messages | ig @instagram |
tw |
β | Navigate to Twitter profiles or search Twitter | tw @MetaOpenSource |
threads |
β | Navigate to Threads profiles or search Threads | threads @zuck |
fb |
β | Navigate to Facebook pages or search Facebook | fb Meta |
li |
linkedin |
Navigate to LinkedIn or search | li software engineer |
reddit |
r |
Navigate to Reddit or search subreddits | r r/rust |
yt |
youtube |
Navigate to YouTube or search for videos (supports: studio, subs) |
yt rust programming |
wa |
whatsapp |
Navigate to WhatsApp | wa |
| Command | Aliases | Description | Example |
|---|---|---|---|
g |
(default) | Search Google (default fallback for any unrecognized command) | g rust programming |
gmail |
mail |
Navigate to Gmail | mail |
docs |
gdoc |
Navigate to Google Docs | docs |
gsheets |
β | Navigate to Google Sheets | gsheets |
gslides |
β | Navigate to Google Slides | gslides |
gchat |
β | Navigate to Google Chat | gchat |
gmaps |
maps |
Navigate to Google Maps or search for a location | gmaps san francisco |
| Command | Aliases | Description | Example |
|---|---|---|---|
meta |
metaai |
Navigate to Meta, Meta AI, Meta Accounts Center, or Meta Pay | meta accounts |
claude |
β | Navigate to Claude AI (supports: billing, cost, artifacts, chats, projects) |
claude projects |
chatgpt |
β | Navigate to ChatGPT | chatgpt |
| Command | Aliases | Description | Example |
|---|---|---|---|
az |
amzn, azn, amazon |
Navigate to Amazon or search for products | az headphones |
rei |
β | Navigate to REI or search for outdoor gear | rei hiking boots |
schwab |
β | Charles Schwab shortcuts (billpay, orders, trade, transfer, security, contact) |
schwab trade |
stock |
stocks, finance, $<ticker> |
Look up stock prices on Yahoo Finance | stock META or $META |
| Command | Aliases | Description | Example |
|---|---|---|---|
1password |
1p, onepassword |
1Password home page | 1p |
soundcloud |
sc |
Navigate to SoundCloud (supports: likes) |
sc edm |
wiki |
wikipedia |
Search on Wikipedia | wiki rust programming |
ddg |
duckduckgo |
Search DuckDuckGo | ddg rust programming |
| Command | Aliases | Description | Example |
|---|---|---|---|
bindings |
commmands, list, bunny, cmd, cmds, help |
View all Bunnypmsl command bindings in a web portal | bindings |
$ β $AAPL redirects to Yahoo Finance@ β tw @username@ β ig @username@ β threads @usernamer/ prefix β r r/rustSee the Installation section to install bunnypmsl from crates.io.
To build from source or contribute to the project, see Manual Setup below.
Make sure you have Rust installed.
$ git clone https://github.com/daveio/bunnypmsl.git
$ cd bunnypmsl
# Run the web server
$ cargo run -- serve
# OR run the CLI (in a separate terminal)
$ cargo run -- gh facebook/react
# OR install globally for easier access
$ cargo install --path .
Bunnypmsl is designed to be easy to deploy anywhere using Docker.
# run on default port 8000
$ docker compose up -d
# run on custom port 9000
$BUNNYPMSL_PORT=9000Β·docker compose up
The application will be running at http://localhost:8000 by default.
Docker makes it easy to deploy anywhere:
For detailed deployment instructions, reverse proxy setup, and troubleshooting, see the Deployment Guide.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated. See CONTRIBUTING for more information.
Distributed under the MIT License. See LICENSE for more information.