-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff6dd0a
commit 4cf52e8
Showing
6 changed files
with
41 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
PiGro is a program designed to make all Debian-based distributions easier to use on the Pi. | ||
The most common terminal commands can be executed with one click. | ||
A system configuration tool inspired by openSUSE's YaST but with the user-friendliness of Linux Mint. PiGro equips Raspberry Pi OS with graphical interfaces for tasks that would otherwise require the terminal. It is also optimized for Ubuntu, Ubuntu Mate, and MX Linux. | ||
|
||
Features: | ||
- System Monitor | ||
- Easy access to system areas with elevated privileges | ||
- Powerful update tools | ||
- Desktop Environment (DE) Theme Changer | ||
- Autostart Tool | ||
- Software Center for APT, Pi Apps & Flatpak | ||
- Tuning & Overclocking section | ||
|
||
To run: Menu -> System Tools -> PiGro | ||
To run in a terminal: cd ~/PiGro-Aid- ; ~/PiGro-Aid-/start.sh | ||
To run in a terminal: pigro-jci |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
#!/bin/bash | ||
|
||
purge_packages || exit 1 | ||
rm -rf ~/PiGro-Aid- | ||
|
||
rm -f ~/Desktop/pigro.desktop ~/.local/share/applications/pigro.desktop | ||
|
||
# Check if ~/PiGro-Aid- exists (Github install method). New dir is /opt/ (.deb) | ||
if [ -d ~/PiGro-Aid- ]; then | ||
# Purge packages and exit with code 1 if unsuccessful | ||
purge_packages || exit 1 | ||
|
||
# Remove directory ~/PiGro-Aid- | ||
rm -rf ~/PiGro-Aid- | ||
|
||
# Remove desktop file from Desktop and ~/.local/share/applications/ | ||
rm -f ~/Desktop/pigro.desktop ~/.local/share/applications/pigro.desktop | ||
elif [ -d /opt/PiGro-Aid- ]; then | ||
# Purge packages and exit with code 1 if unsuccessful | ||
purge_packages || exit 1 | ||
else | ||
echo "Directory ~/PiGro-Aid- or /opt/PiGro-Aid- not found. No action taken." | ||
fi |
Empty file.