Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johanbove/seasonalclock-gnome
Displays the current Seasonal Clock hour in the Gnome panel
https://github.com/johanbove/seasonalclock-gnome
gnome seasonal-clock shell-extensions
Last synced: 10 days ago
JSON representation
Displays the current Seasonal Clock hour in the Gnome panel
- Host: GitHub
- URL: https://github.com/johanbove/seasonalclock-gnome
- Owner: johanbove
- Created: 2023-08-06T20:55:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-13T21:31:09.000Z (about 1 year ago)
- Last Synced: 2024-04-18T12:56:34.447Z (7 months ago)
- Topics: gnome, seasonal-clock, shell-extensions
- Language: JavaScript
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Seasonal Hours Clock Gnome Shell Extension
Inspired by
This concept originated in [Twodays Crossing](https://github.com/earthstar-project/twodays-crossing), an [Earthstar](https://earthstar-project.org/) chat app. This clock was created by [@cinnamon-bun](https://github.com/cinnamon-bun). _We miss you._
## About
This is a basic implementation of a ["Gnome Shell Extension"](https://extensions.gnome.org) that displays the current hour as the "Seasonal Hour" in the form of its representative emoji.
![Screenshot from 2023-08-13 23-12-47](https://github.com/johanbove/seasonalclock-gnome/assets/922765/707077c1-aa94-4888-8b4b-8226875a5820)
## Development
Read the [GJS.guide](https://gjs.guide/)
Run a debug instance:
```bash
dbus-run-session -- gnome-shell --nested --wayland
```Install the extension:
```bash
gnome-extensions install [email protected]
```Disable the extension:
```bash
gnome-extensions disable [email protected]
```Enable the extension:
```bash
gnome-extensions enable [email protected]
```Pack the extension:
```bash
gnome-extensions pack [email protected] --extra-source=seasonalhours.js
```## Changelog
### Version 1.1.1
- Fixed "candle", "ice", "mist" and "mountain" emoji rendering through unicode character.
- Preparing for Gnome Extensions release.### Version 1.1
- Changed capitalization
- Removed parenthesis### Version 1.0
- Initial release; nothing fancy.
- Emojis for the hours are based upon [this version](https://github.com/sgwilym/seasonal-hours-clock/blob/064d6a9545aa50f93367ed7f2a27ab4c3fc766dd/src/seasonal-hours.ts).---