{"id":21382055,"url":"https://github.com/catmeowbyte/no_internet_overlay","last_synced_at":"2026-01-03T12:04:35.999Z","repository":{"id":244525857,"uuid":"815493238","full_name":"CatMeowByte/no_internet_overlay","owner":"CatMeowByte","description":"Cover the screen with a prominent graphic popup indicating that the computer is not connected to the internet.","archived":false,"fork":false,"pushed_at":"2024-06-30T07:04:35.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-22T23:11:27.461Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"GDScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CatMeowByte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-06-15T10:21:02.000Z","updated_at":"2024-07-03T07:42:33.000Z","dependencies_parsed_at":"2025-02-16T17:32:26.741Z","dependency_job_id":null,"html_url":"https://github.com/CatMeowByte/no_internet_overlay","commit_stats":null,"previous_names":["catmeowbyte/no_internet_overlay"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CatMeowByte%2Fno_internet_overlay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CatMeowByte%2Fno_internet_overlay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CatMeowByte%2Fno_internet_overlay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CatMeowByte%2Fno_internet_overlay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CatMeowByte","download_url":"https://codeload.github.com/CatMeowByte/no_internet_overlay/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243858056,"owners_count":20359271,"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":[],"created_at":"2024-11-22T10:51:55.238Z","updated_at":"2026-01-03T12:04:35.940Z","avatar_url":"https://github.com/CatMeowByte.png","language":"GDScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# No Internet Overlay\n\n**\"No Internet\" Overlay** is a simple utility to cover the screen with a prominent graphic popup indicating that the computer is not connected to the internet.\n\n![Screenshot_2024-06-15_19-24-54](https://github.com/CatMeowByte/no_internet_overlay/assets/136966673/e8478517-2745-424d-bafe-a34491f1ed88)\n\n## Arguments:\n\n- `--info`: Display detailed information about the application and exit.\n- `--timeout=\u003cseconds\u003e`: Set the HTTP request timeout in seconds.\n- `--refresh=\u003cseconds\u003e`: Set the interval between ping attempts in seconds.\n- `--bg-color=\u003ccolor\u003e`: Set the background color of the overlay (`red`, `orange`, `yellow`, `gray`).\n- `--bg-alpha=\u003cvalue\u003e`: Set the background opacity (Range: 0.0 to 0.875).\n- `--fg-alpha=\u003cvalue\u003e`: Set the graphic opacity (Range: 0.0 to 1.0).\n- `--blink`: Enable the graphic to blink.\n\n### Examples:\n\n```\nno_internet_overlay --timeout=15 --refresh=30 --bg-color=yellow --bg-alpha=0.5 --fg-alpha=0.8 --blink\n```\n\n## Installation\n\nTo run `no_internet_overlay` at startup, follow these steps:\n\n### Running `no_internet_overlay` at Startup\n\n#### Linux\n\n1. **Create a Desktop Entry:**\n\n   Create a `.desktop` file in `~/.config/autostart/`. You can name it `no_internet_overlay.desktop`:\n\n   ```ini\n   [Desktop Entry]\n   Type=Application\n   Name=No Internet Overlay\n   Exec=/path/to/no_internet_overlay --timeout=15 --refresh=30 --bg-color=yellow --bg-alpha=0.5 --fg-alpha=0.8 --blink\n   Terminal=false\n   ```\n\n   Replace `/path/to/no_internet_overlay` with the actual path where `no_internet_overlay` resides.\n\n2. **Make the Desktop Entry Executable:**\n\n   Open a terminal and make the `.desktop` file executable with the following command:\n\n   ```bash\n   chmod +x ~/.config/autostart/no_internet_overlay.desktop\n   ```\n\n3. **Log Out and Log In:**\n\n   Restart your Linux system or log out and log back in to see `no_internet_overlay` start automatically.\n\n#### Windows\n\nUse the Task Scheduler:\n\n1. **Open Task Scheduler:**\n\n   - Press `Win + R` to open the Run dialog.\n   - Type `taskschd.msc` and press Enter to open Task Scheduler.\n\n2. **Create a New Task:**\n\n   - Click on \"Create Task...\" in the Actions panel on the right.\n\n3. **General Settings:**\n\n   - In the General tab:\n     - Name: Enter a name for your task (e.g., No Internet Overlay).\n     - Description: Optionally, add a description.\n\n4. **Triggers:**\n\n   - In the Triggers tab:\n     - Click \"New...\"\n     - Choose \"At log on\" from the Begin the task dropdown.\n     - Click OK.\n\n5. **Actions:**\n\n   - In the Actions tab:\n     - Click \"New...\"\n     - In the Program/script field, browse and select `no_internet_overlay`.\n     - In the Add arguments field, enter your desired command-line options, such as `--timeout=15 --refresh=30 --bg-color=yellow --bg-alpha=0.5 --fg-alpha=0.8 --blink`.\n     - Click OK.\n\n6. **Conditions and Settings:**\n\n   - Optionally, adjust conditions and settings as needed in the Conditions and Settings tabs.\n\n7. **Save and Exit:**\n\n   - Click OK to save the task.\n\n## Information\n\nThis project is licensed under [GPLv3+](https://spdx.org/licenses/GPL-3.0-or-later.html \"GNU General Public License version 3 or later\").\n\nThis project follows the [HGG](https://catmeowbyte.github.io/heretic_git_guidelines \"Heretic Git Guidelines\").","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcatmeowbyte%2Fno_internet_overlay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcatmeowbyte%2Fno_internet_overlay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcatmeowbyte%2Fno_internet_overlay/lists"}