https://github.com/bradsec/debgnome
A bash shell script for automating and customising the appearance of the GNOME desktop on Debian based distros
https://github.com/bradsec/debgnome
Last synced: 11 months ago
JSON representation
A bash shell script for automating and customising the appearance of the GNOME desktop on Debian based distros
- Host: GitHub
- URL: https://github.com/bradsec/debgnome
- Owner: bradsec
- License: mit
- Created: 2023-06-29T12:29:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-30T06:45:23.000Z (almost 3 years ago)
- Last Synced: 2025-02-25T03:41:43.814Z (over 1 year ago)
- Language: Shell
- Size: 120 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# debgnome.sh
## A bash shell script for automating and customising the appearance of the GNOME desktop on Debian based distros.

## USAGE
#### Option 1. Run with default selection of extensions
Use the wget or curl command lines shown below for quick setup.
```terminal
bash -c "$(wget -qO- https://raw.githubusercontent.com/bradsec/debgnome/main/debgnome.sh)"
```
```terminal
bash -c "$(curl -fsSL https://raw.githubusercontent.com/bradsec/debgnome/main/debgnome.sh)"
```
#### Option 2. Clone, modify or customise extensions and run locally.
(Optional) You can edit and modify script to suit using this method.
Edit the `main()` function and specify the GNOME extensions you want installed.
```terminal
git clone https://github.com/debgnome.git
```
```terminal
# Running after cloning repo
cd debgnome
bash debgnome.sh
```
```terminal
# Alternatively make executable
cd debgnome
chmod +x debgnome.sh
./debgnome.sh
```