Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomasleplus/raspberry-pi-utils
A few useful Raspberry Pi utilities
https://github.com/thomasleplus/raspberry-pi-utils
bash electronics leds python raspberry-pi raspberry-pi-gpio raspberry-pi-utilities raspberrypi raspbian shell
Last synced: 7 days ago
JSON representation
A few useful Raspberry Pi utilities
- Host: GitHub
- URL: https://github.com/thomasleplus/raspberry-pi-utils
- Owner: thomasleplus
- License: apache-2.0
- Created: 2017-10-12T19:44:41.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T16:13:45.000Z (22 days ago)
- Last Synced: 2024-10-26T04:58:29.297Z (20 days ago)
- Topics: bash, electronics, leds, python, raspberry-pi, raspberry-pi-gpio, raspberry-pi-utilities, raspberrypi, raspbian, shell
- Language: Shell
- Homepage:
- Size: 133 KB
- Stars: 10
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Raspberry Pi utilities
This is a collection of useful Raspberry Pi shell scripts.
[![ShellCheck](https://github.com/thomasleplus/raspberry-pi-utils/workflows/ShellCheck/badge.svg)](https://github.com/thomasleplus/raspberry-pi-utils/actions?query=workflow:"ShellCheck")
**These scripts have only been tested with the Raspbian Linux distro.**
Each of these scripts are designed to be executable directly from GitHub using a simple one-liner like:
```sh
sudo bash <(curl -sS https://raw.githubusercontent.com/thomasleplus/raspberry-pi-utils/main/script.sh)
```But for more advanced (or security-conscious) users, I always recommend downloading scripts and reviewing them before executing them, especially when using `sudo`.
## [Configure LEDs](configure-LEDs.sh)
This script lets you configure the LEDs in an interactive way.
```sh
sudo bash <(curl -sS https://raw.githubusercontent.com/thomasleplus/raspberry-pi-utils/main/configure-LEDs.sh)
```## [Create new login](create-new-login.sh)
This script creates a new user account in an interactive way.
```sh
sudo bash <(curl -sS https://raw.githubusercontent.com/thomasleplus/raspberry-pi-utils/main/create-new-login.sh)
```## See also
[Adafruit's scripts](https://github.com/adafruit/Raspberry-Pi-Installer-Scripts)