{"id":19575384,"url":"https://github.com/muddev/rasp-kiosk","last_synced_at":"2025-08-17T16:56:37.341Z","repository":{"id":194126975,"uuid":"466608475","full_name":"MudDev/rasp-kiosk","owner":"MudDev","description":"Rotating crypto prices on Raspberry Pi display","archived":false,"fork":false,"pushed_at":"2025-08-13T22:51:06.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-17T16:56:34.302Z","etag":null,"topics":["cryptocurrency","iot-application","raspberry-pi"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/MudDev.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,"zenodo":null}},"created_at":"2022-03-06T01:33:15.000Z","updated_at":"2025-08-13T22:51:09.000Z","dependencies_parsed_at":"2025-08-17T16:56:35.734Z","dependency_job_id":null,"html_url":"https://github.com/MudDev/rasp-kiosk","commit_stats":null,"previous_names":["muddev/rasp-kiosk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MudDev/rasp-kiosk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MudDev%2Frasp-kiosk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MudDev%2Frasp-kiosk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MudDev%2Frasp-kiosk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MudDev%2Frasp-kiosk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MudDev","download_url":"https://codeload.github.com/MudDev/rasp-kiosk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MudDev%2Frasp-kiosk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270877327,"owners_count":24661123,"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-17T02:00:09.016Z","response_time":129,"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":["cryptocurrency","iot-application","raspberry-pi"],"created_at":"2024-11-11T06:47:03.139Z","updated_at":"2025-08-17T16:56:36.970Z","avatar_url":"https://github.com/MudDev.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003ch1 align=\"center\"\u003e\n  Rotating crypto prices on Raspberry Pi display\n\u003c/h1\u003e\n\n![image](https://user-images.githubusercontent.com/44410798/156931622-c9ffb307-4032-4f44-92ea-5359c2a17786.png)\n\n## 🔎 What's inside?\n\nThere is a simple index.html page that can be hosted by github pages that the raspberry pi will pull from.\n\n\n## 🔨 What was used:\n\n  - An old Raspberry Pi (Model B Rev 2.0) I had laying around.\n\n  - I picked up this display at amazon (https://www.amazon.com/dp/B083C12N57) then had to make a few modifications to fit the old raspi in the case, but looks nice mounted on the wall.\n\n### Install the LCD Drivers for the screen:\n\n - Follow the instructions for the 3.5 screen (sudo ./LCD35-show) https://github.com/goodtft/LCD-show I forked it just incase the other repo goes down: (https://github.com/MudDev/LCD-show)\n\n## ⌨ Setting up the raspi to automatically boot to page.\n\n1.  **Installing X11 and Chromium   Step 1 of 2**\n\n    - Install the X Window System (X11)\n        Install xserver-xorg with the command \n        ```shell\n        sudo apt-get install --no-install-recommends xserver-xorg\n        ```\n        Install xinit with the command \n        ```shell\n        sudo apt-get install --no-install-recommends xinit\n        ```\n        Install x11-xserver-utils with the command \n        ```shell\n        sudo apt-get install --no-install-recommends x11-xserver-utils\n        ```\n\n    - Install Chromium and kiosk dependencies\n        Install chromium-browser with the command\n        ```shell\n        sudo apt-get install chromium-browser\n        ```\n        Install the kiosk dependencies with the command\n        ```shell\n        sudo apt-get install matchbox-window-manager xautomation unclutter\n        ```\n\n1.  **Configure boot and display options**\n\n    - Create the kiosk startup script\n        Create a new file called **kiosk** in the pi user's home folder with the command `nano ~/kiosk` and paste in the following template, updating the URL on the last line to your repo page:\n\n        ```sh\n          #!/bin/sh\n          xset -dpms     # disable DPMS (Energy Star) features.\n          xset s off     # disable screen saver\n          xset s noblank # don't blank the video device\n          matchbox-window-manager -use_titlebar no \u0026\n          unclutter \u0026    # hide X mouse cursor unless mouse activated\n          chromium-browser --disable-gpu --display=:0 --kiosk --incognito --window-position=0,0 https://muddev.github.io/rasp-kiosk/index.html\n        ```\n\n        Make the kiosk script file executable with the command `chmod 755 ~/kiosk`\n\n    - Add the kiosk script to .bashrc\n\n        Initiation of the X Windows System and the kiosk script will be added to the pi user's .bashrc file which runs each time the Pi boots.\n\n        Edit the **~/.bashrc** file with the command `nano ~/.bashrc` to include the following as the last line:\n\n        ```sh\n        xinit /home/pi/kiosk -- vt$(fgconsole)\n        ```\n\n    - Install lightdm\n      ```shell\n        sudo apt-get install lightdm\n      ```\n      \n    - Configure boot and display with the raspi-config tool\n\n        From the command prompt on the Pi, enter the command `sudo raspi-config` which will open a text-based menu. Update the configuration:\n        ```\n          - Display -\u003e \n                            Underscan - Off\n          - Boot Options -\u003e \n                            Desktop Autologin Desktop GUI\n                            Console Autologin\n        ```\n\n        Upon completing the above, select **\u003cFinish\u003e** and select **\u003cYes\u003e** when prompted to reboot. If a display is connected, following the boot sequence, the Chromium browser should open in kiosk mode and display the specified webpage.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuddev%2Frasp-kiosk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuddev%2Frasp-kiosk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuddev%2Frasp-kiosk/lists"}