forked from sh-edraft.de/sh_linux_installation_scripts
9 lines
184 B
Bash
9 lines
184 B
Bash
#!/bin/bash
|
|
|
|
install_timeshift() {
|
|
echo "Installing Timeshift"
|
|
sudo add-apt-repository -y ppa:teejee2008/ppa
|
|
sudo apt-get update -y
|
|
sudo apt-get install timeshift -y
|
|
}
|