Skip to content
Draft
Show file tree
Hide file tree
Changes from 3 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
14 changes: 14 additions & 0 deletions extensions/ip-in-menu-bar/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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
compiled_raycast_rust

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/ip-in-menu-bar/.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/ip-in-menu-bar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# IP in menu bar Changelog

## [Initial Version] - {PR_MERGE_DATE}
20 changes: 20 additions & 0 deletions extensions/ip-in-menu-bar/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# IP in Menu Bar

Displays your IP address directly in the macOS menu bar — always visible at a glance.

## Features

- Shows your **public or local IP** (IPv4 or IPv6) in the menu bar
- Click any address to **copy it to the clipboard**
- Automatically **refreshes public IP** every 15 minutes or when your network changes
- Supports multiple **local network adapters** — pick which one to display

## Usage

After launching the command, your IP address appears in the menu bar. Click it to:

- See all addresses (public IPv4, public IPv6, local IPv4, local IPv6)
- Copy any address to the clipboard
- Switch which address is shown in the menu bar
- Switch the active local network adapter
- Manually refresh the public IP
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions extensions/ip-in-menu-bar/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([
...raycastConfig,
]);
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading