9 lines
185 B
Bash
9 lines
185 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
|
||
|
}
|