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: 9 months 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 8 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T22:34:09.000Z (9 months ago)
- Last Synced: 2025-04-03T23:27:10.654Z (9 months ago)
- Topics: bash, electronics, leds, python, raspberry-pi, raspberry-pi-gpio, raspberry-pi-utilities, raspberrypi, raspbian, shell
- Language: Shell
- Homepage:
- Size: 188 KB
- Stars: 9
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Raspberry Pi utilities
This is a collection of useful Raspberry Pi shell scripts.
[](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)