{"id":13610216,"url":"https://github.com/joshdk/tty-qlock","last_synced_at":"2025-04-14T06:31:24.706Z","repository":{"id":6749523,"uuid":"7995886","full_name":"joshdk/tty-qlock","owner":"joshdk","description":"A minimal, curses-based clock for your terminal","archived":false,"fork":false,"pushed_at":"2023-08-11T11:11:39.000Z","size":3811,"stargazers_count":87,"open_issues_count":1,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-27T20:12:31.756Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joshdk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-02-03T20:08:30.000Z","updated_at":"2024-12-09T16:28:20.000Z","dependencies_parsed_at":"2024-06-19T00:17:18.343Z","dependency_job_id":"40ad085b-09e9-402b-8623-c03591e40ed6","html_url":"https://github.com/joshdk/tty-qlock","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshdk%2Ftty-qlock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshdk%2Ftty-qlock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshdk%2Ftty-qlock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshdk%2Ftty-qlock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joshdk","download_url":"https://codeload.github.com/joshdk/tty-qlock/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248833178,"owners_count":21168812,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2024-08-01T19:01:42.556Z","updated_at":"2025-04-14T06:31:24.610Z","avatar_url":"https://github.com/joshdk.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"[![Actions][github-actions-badge]][github-actions-link]\n[![License][license-badge]][license-link]\n[![Go Report Card][go-report-badge]][go-report-link]\n[![Releases][github-release-badge]][github-release-link]\n\n# Qlock\n\nA minimal, curses-based clock, for your terminal. Inspired by the [QlockTwo by Biegert\u0026Funk](https://qlocktwo.com/us/ \"QlockTwo by Biegert\u0026Funk\").\n\n![qlock screenshot](images/screenshot.jpg \"qlock screenshot\")\n\n## Installing\n\n### Release binary\n\nPrebuilt binaries can be found on the [releases page][github-release-link]. Download the archive for your computer's architecture, extract the binary, and put it inside your `$PATH`.\n\n```bash\n$ wget -q https://github.com/joshdk/tty-qlock/releases/download/v1.0.0/qlock-linux-amd64.tar.gz\n$ tar -xf qlock-linux-amd64.tar.gz\n$ sudo install qlock /usr/bin/qlock\n```\n\nYou can then launch qlock by running:\n\n```\n$ qlock -help\n```\n\n### From source\n\nAlternatively, you can build it yourself by cloning the repo, and then running:\n\n```bash\n$ make build\n```\n\nYou can then launch qlock by running:\n\n```\n$ ./dist/qlock -help\n```\n\n## Usage\n\n### Help!\n\nYou can pass the `-help` flag to display the help text:\n\n```\n$ qlock -help\nUsage of qlock:\n  -off-color string\n        color for disabled letters (default \"black\")\n  -on-color string\n        color for enabled letters (default \"blue\")\n  -version\n        print version and exit\n```\n\n### Colors\n\nYou can pass the `-on-color` and `-off-color` flags to control the color of the enabled and disabled UI elements respectively.\n\nBoth flags can take any of the 8 standard color names (`black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, or `white`).\n\nAdditionally, a `+bold` suffix can be added to use the bold color variant (like `-color-on green+bold`).\n\n## Bug Reporting\n\nIf you encounter an issue, [please report it](https://github.com/joshdk/tty-qlock/issues/new)!\n\nWhen reporting, please include:\n\n- A screenshot of your terminal (drag an image into the issue description box to attach it).\n- Any interaction workflow details (resizing/dragging/clicking/etc).\n- Your system's architecture (like `linux`/`amd64`).\n\nThank you!\n\n## License\n\nThis code is distributed under the [BSD 3-Clause License][license-link], see [LICENSE.txt][license-file] for more information.\n\n[github-actions-badge]:  https://github.com/joshdk/tty-qlock/workflows/Build/badge.svg\n[github-actions-link]:   https://github.com/joshdk/tty-qlock/actions\n[github-release-badge]:  https://img.shields.io/github/release/joshdk/tty-qlock/all.svg\n[github-release-link]:   https://github.com/joshdk/tty-qlock/releases\n[go-report-badge]:  https://goreportcard.com/badge/github.com/joshdk/tty-qlock\n[go-report-link]:   https://goreportcard.com/report/github.com/joshdk/tty-qlock\n[license-badge]:    https://img.shields.io/badge/license-BSD-green.svg\n[license-file]:     https://github.com/joshdk/tty-qlock/blob/master/LICENSE.txt\n[license-link]:     https://opensource.org/licenses/BSD-3-Clause\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshdk%2Ftty-qlock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoshdk%2Ftty-qlock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshdk%2Ftty-qlock/lists"}