Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pqrs-org/ShowyEdge
A visible indicator of the current input source for macOS.
https://github.com/pqrs-org/ShowyEdge
macos
Last synced: 12 days ago
JSON representation
A visible indicator of the current input source for macOS.
- Host: GitHub
- URL: https://github.com/pqrs-org/ShowyEdge
- Owner: pqrs-org
- License: unlicense
- Created: 2013-06-14T08:10:51.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2024-05-11T23:53:00.000Z (6 months ago)
- Last Synced: 2024-08-02T03:12:00.048Z (3 months ago)
- Topics: macos
- Language: Swift
- Homepage: https://showyedge.pqrs.org
- Size: 24.8 MB
- Stars: 299
- Watchers: 17
- Forks: 13
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: SECURITY.md
Awesome Lists containing this project
README
[![Build Status](https://github.com/pqrs-org/ShowyEdge/workflows/ShowyEdge%20CI/badge.svg)](https://github.com/pqrs-org/ShowyEdge/actions)
[![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://github.com/pqrs-org/ShowyEdge/blob/main/LICENSE.md)# ShowyEdge
ShowyEdge displays a color bar at the top edge of the screen depending on the current input source.
You can recognize the current input source very easily even if you are using fullscreen apps.## Web pages
## System requirements
macOS 11 Big Sur or later
## How to build
System Requirements:
- macOS 11.0+
- Xcode 13.1+
- Command Line Tools for Xcode
- [XcodeGen](https://github.com/yonaskolb/XcodeGen)
- [create-dmg](https://github.com/sindresorhus/create-dmg)### Steps
1. Get source code by executing a following command in Terminal.app.
```shell
git clone --depth 1 https://github.com/pqrs-org/ShowyEdge.git
cd ShowyEdge
git submodule update --init --recursive --depth 1
```2. Find your codesign identity if you have one.
(Skip this step if you don't have your codesign identity.)```shell
security find-identity -p codesigning -v | grep 'Developer ID Application'
```The result is as follows.
```text
1) 8D660191481C98F5C56630847A6C39D95C166F22 "Developer ID Application: Fumihiko Takayama (G43BCU2T37)"
```Your codesign identity is `8D660191481C98F5C56630847A6C39D95C166F22` in the above case.
3. Set environment variable to use your codesign identity.
(Skip this step if you don't have your codesign identity.)```shell
export PQRS_ORG_CODE_SIGN_IDENTITY=8D660191481C98F5C56630847A6C39D95C166F22
```4. Build a package by executing a following command in Terminal.app.
```shell
cd ShowyEdge
make clean all
```Then, ShowyEdge-VERSION.dmg has been created in the current directory.
It's a distributable package.Note: If you don't have codesign identity, the dmg works only on your machine.