You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
329 B
15 lines
329 B
#!/usr/bin/env sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
timeshift_version="v17.11"
|
|
|
|
# Install Timeshift
|
|
mkdir -p $HOME/tmp
|
|
pushd $HOME/tmp
|
|
timeshift_file="timeshift-$timeshift_version-amd64.run"
|
|
curl -LSO https://github.com/teejee2008/timeshift/releases/download/$timeshift_version/$timeshift_file
|
|
chmod +x $timeshift_file
|
|
sudo ./$timeshift_file
|
|
popd
|