sh_linux_installation_scripts/common/debian/apps/timeshift.sh

9 lines
176 B
Bash
Raw Permalink Normal View History

2021-03-04 16:39:10 +01:00
#!/bin/bash
install_timeshift() {
2021-04-10 00:26:46 +02:00
echo "Installing Timeshift"
2021-03-04 16:39:10 +01:00
sudo add-apt-repository -y ppa:teejee2008/ppa
2021-11-24 09:13:58 +01:00
sudo apt update -y
sudo apt install timeshift -y
2021-03-04 16:39:10 +01:00
}