sh_linux_installation_scripts/common/redhat/apps/timeshift.sh

9 lines
176 B
Bash
Raw Normal View History

2021-11-24 09:41:28 +01:00
#!/bin/bash
install_timeshift() {
echo "Installing Timeshift"
sudo add-dnf-repository -y ppa:teejee2008/ppa
sudo dnf update -y
sudo dnf install timeshift -y
}