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

  1. #!/usr/bin/env sh
  2. set -x
  3. set -e
  4. timeshift_version="v17.11"
  5. # Install Timeshift
  6. mkdir -p $HOME/tmp
  7. pushd $HOME/tmp
  8. timeshift_file="timeshift-$timeshift_version-amd64.run"
  9. curl -LSO https://github.com/teejee2008/timeshift/releases/download/$timeshift_version/$timeshift_file
  10. chmod +x $timeshift_file
  11. sudo ./$timeshift_file
  12. popd