https://github.com/florianhegele/autoupdatediscord
Script and Service to update discord automatically
https://github.com/florianhegele/autoupdatediscord
auto-update automatic discord discord-update update
Last synced: about 2 months ago
JSON representation
Script and Service to update discord automatically
- Host: GitHub
- URL: https://github.com/florianhegele/autoupdatediscord
- Owner: FlorianHegele
- License: gpl-3.0
- Created: 2024-02-13T18:20:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-12T09:21:37.000Z (over 2 years ago)
- Last Synced: 2025-06-13T08:48:44.398Z (12 months ago)
- Topics: auto-update, automatic, discord, discord-update, update
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Automatic Discord Update
This repository contains a Bash script and a service file to automatically update Discord on Linux systems.
## Usage
### Download and Installation
1. Copy the bash script wherever you want, I recommend in the /opt directory, which is designed for this purpose.
2. Modify the service file to make it execute the script you've copied with the correct path.
3. Copy the service file to /etc/systemd/system/
### Service Activation
You can enable the updater with the following command:
```bash
sudo systemctl enable update-discord.service
```
### Starting the Service
You can also manually start the service with the following command:
```bash
sudo systemctl restart update-discord.service
```
### Stopping the Service
If necessary, you can stop the service with the following command:
```bash
sudo systemctl stop update-discord.service
```
### Disabling the Service
If you wish to disable the service, use the following command:
```bash
sudo systemctl disable update-discord.service
```