9 lines
176 B
Bash
9 lines
176 B
Bash
#!/bin/bash
|
|
|
|
install_timeshift() {
|
|
echo "Installing Timeshift"
|
|
sudo add-dnf-repository -y ppa:teejee2008/ppa
|
|
sudo dnf update -y
|
|
sudo dnf install timeshift -y
|
|
}
|