mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
440 B
16 lines
440 B
#!/usr/bin/env bash |
|
|
|
# Run me with: |
|
# |
|
# bash <(curl -Ss raw.githubusercontent.com/01-edu/public/master/scripts/kickstart.sh) |
|
|
|
gsettings set org.gnome.desktop.session idle-delay 0 |
|
gsettings set org.gnome.desktop.screensaver lock-enabled false |
|
wget github.com/01-edu/public/archive/master.zip |
|
unzip master.zip |
|
cd public-master/scripts |
|
sudo -E ./install_client.sh |
|
cat dconfig.txt | dconf load / |
|
cd ../.. |
|
rm -rf master.zip public-master |
|
reboot
|
|
|