https://github.com/limonth/ge-proton-bash-auto-installer
a script that allows you to easily update GE-Proton without doing unnecessary steps. =)
https://github.com/limonth/ge-proton-bash-auto-installer
Last synced: 5 days ago
JSON representation
a script that allows you to easily update GE-Proton without doing unnecessary steps. =)
- Host: GitHub
- URL: https://github.com/limonth/ge-proton-bash-auto-installer
- Owner: LimonTH
- Created: 2025-08-15T08:09:59.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-15T08:16:58.000Z (10 months ago)
- Last Synced: 2025-08-15T10:10:18.696Z (10 months ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GE-Proton-bash-auto-installer
A script that allows you to easily update GE-Proton without doing unnecessary steps. =)
To run the script automatically, you will need a utility to run the scripts when the PC starts, or systemd if you use it.
For example, let's take cron:
# Crontab
Enter the command to edit crontab:
./bash
crontab -e
@reboot /path/to/protonGE_Updater.sh
# Systemd
./bash
sudo nano /etc/systemd/system/protonGE_Updater.service
Example file for Systemd:
[Unit]
Description=protonGE_Updater
[Service]
ExecStart=/path/to/protonGE_Updater.sh
Restart=always
User=LimonTH
[Install]
WantedBy=multi-user.target