9 lines
335 B
Bash
9 lines
335 B
Bash
#!/bin/bash
|
|
|
|
# download script
|
|
echo "Downloading elementaryos-config"
|
|
|
|
wget -q -O /usr/local/bin/elementaryos-config https://git.tcmeta.net/kurtis/elementaryos-config/raw/branch/main/elementaryos-config
|
|
chmod +x /usr/local/bin/elementaryos-config
|
|
|
|
echo Done you should now be able to start the script by typing sudo elementaryos-config |