{"id":28527793,"url":"https://github.com/pqrs-org/tinkle","last_synced_at":"2025-08-20T02:04:37.119Z","repository":{"id":111409958,"uuid":"236311477","full_name":"pqrs-org/Tinkle","owner":"pqrs-org","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-16T22:51:31.000Z","size":27183,"stargazers_count":88,"open_issues_count":8,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-08-17T00:20:36.661Z","etag":null,"topics":["macos"],"latest_commit_sha":null,"homepage":"https://tinkle.pqrs.org","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pqrs-org.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["tekezo"]}},"created_at":"2020-01-26T12:49:35.000Z","updated_at":"2025-08-16T22:51:35.000Z","dependencies_parsed_at":"2024-05-11T23:31:04.437Z","dependency_job_id":"b0bd6adb-3a5d-4cae-9778-bc54e5fca0ef","html_url":"https://github.com/pqrs-org/Tinkle","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/pqrs-org/Tinkle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pqrs-org%2FTinkle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pqrs-org%2FTinkle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pqrs-org%2FTinkle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pqrs-org%2FTinkle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pqrs-org","download_url":"https://codeload.github.com/pqrs-org/Tinkle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pqrs-org%2FTinkle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271252993,"owners_count":24726918,"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","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["macos"],"created_at":"2025-06-09T12:15:37.190Z","updated_at":"2025-08-20T02:04:37.107Z","avatar_url":"https://github.com/pqrs-org.png","language":"Swift","readme":"[![Build Status](https://github.com/pqrs-org/Tinkle/workflows/CI/badge.svg)](https://github.com/pqrs-org/Tinkle/actions)\n[![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://github.com/pqrs-org/Tinkle/blob/main/LICENSE.md)\n\n# Tinkle\n\nTinkle is a macOS app which appends a visual effect for the focused window changes.\u003cbr/\u003e\nIt helps finding the focused window when you switched it by keyboard shortcuts.\n\n![Tinkle](docs/Tinkle.gif)\n\n## Download\n\nYou can download from \u003chttps://tinkle.pqrs.org/\u003e.\n\n## Supported systems\n\nmacOS 11 Big Sur or later.\n\n### Required privilege\n\nTinkle requires accessibility features in order to detect the focused window changes.\n\n\u003cimg src=\"docs/accessibility-access.png\" width=\"350\" alt=\"accessibility access\" /\u003e\n\n---\n\n## For developers\n\n### How to build\n\nSystem requirements to build Tinkle:\n\n-   macOS 11.0+\n-   Xcode 13+\n-   Command Line Tools for Xcode\n-   [XcodeGen](https://github.com/yonaskolb/XcodeGen)\n-   [create-dmg](https://github.com/sindresorhus/create-dmg)\n\n#### Steps\n\n1.  Get source code by executing a following command in Terminal.app.\n\n    ```shell\n    git clone --depth 1 https://github.com/pqrs-org/Tinkle.git\n    cd Tinkle\n    git submodule update --init --recursive --depth 1\n    ```\n\n2.  Find your codesign identity if you have one.\u003cbr /\u003e\n    (Skip this step if you don't have your codesign identity.)\n\n    ```shell\n    security find-identity -p codesigning -v | grep 'Developer ID Application'\n    ```\n\n    The result is as follows.\n\n    ```text\n    1) 8D660191481C98F5C56630847A6C39D95C166F22 \"Developer ID Application: Fumihiko Takayama (G43BCU2T37)\"\n    ```\n\n    Your codesign identity is `8D660191481C98F5C56630847A6C39D95C166F22` in the above case.\n\n3.  Set environment variable to use your codesign identity.\u003cbr /\u003e\n    (Skip this step if you don't have your codesign identity.)\n\n    ```shell\n    export PQRS_ORG_CODE_SIGN_IDENTITY=8D660191481C98F5C56630847A6C39D95C166F22\n    ```\n\n4.  Build a package by executing a following command in Terminal.app.\n\n    ```shell\n    make package\n    ```\n\n    `Tinkle-*.dmg` will be generated.\n\n    Note: If you don't have codesign identity, the dmg works only on your machine.\n\n### Update/Add effects\n\nThe project uses Metal's compute shaders to create effects, which are stored in `src/Share/metal`.\nTo preview these effects, the project includes a tool called ShaderViewer.\nThis tool allows you to conveniently review and modify the shaders.\n","funding_links":["https://github.com/sponsors/tekezo"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpqrs-org%2Ftinkle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpqrs-org%2Ftinkle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpqrs-org%2Ftinkle/lists"}