├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── AUTHORS ├── BUILD_CONFIG ├── COPYING ├── INSTALL ├── LICENSE.md ├── NOTES ├── README.md ├── _config.yml ├── archlinux └── PKGBUILD ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── rules ├── source │ └── format └── timeshift.appdata.xml ├── files └── timeshift.json ├── icons ├── README ├── timeshift.png ├── timeshift.xcf ├── timeshift_2_black.xcf ├── timeshift_2_black_bold.xcf ├── timeshift_2_white.xcf ├── timeshift_2_white_bold.xcf ├── timeshift_black.png ├── timeshift_black_bold.png ├── timeshift_white.png └── timeshift_white_bold.png ├── images ├── PayPal.png ├── bitcoin_qr_code_timeshift.png ├── main_window.png ├── patreon.png ├── restore_summary.png ├── settings_btrfs.png ├── settings_filters.png ├── settings_location.png ├── settings_rsync.png ├── settings_schedule.png ├── settings_users.png ├── settings_users_btrfs.png └── settings_users_rsync.png ├── makefile ├── makepot ├── man └── timeshift.1.gz ├── merge-launchpad-translations.sh ├── po ├── timeshift-am.po ├── timeshift-ar.po ├── timeshift-az.po ├── timeshift-bg.po ├── timeshift-ca.po ├── timeshift-ca@valencia.po ├── timeshift-cs.po ├── timeshift-da.po ├── timeshift-de.po ├── timeshift-el.po ├── timeshift-en_GB.po ├── timeshift-es.po ├── timeshift-et.po ├── timeshift-eu.po ├── timeshift-fi.po ├── timeshift-fr.po ├── timeshift-he.po ├── timeshift-hi.po ├── timeshift-hr.po ├── timeshift-hu.po ├── timeshift-ia.po ├── timeshift-id.po ├── timeshift-is.po ├── timeshift-it.po ├── timeshift-ja.po ├── timeshift-ko.po ├── timeshift-lt.po ├── timeshift-nb.po ├── timeshift-ne.po ├── timeshift-nl.po ├── timeshift-pl.po ├── timeshift-pt.po ├── timeshift-pt_BR.po ├── timeshift-ro.po ├── timeshift-ru.po ├── timeshift-sk.po ├── timeshift-sr.po ├── timeshift-sv.po ├── timeshift-tr.po ├── timeshift-uk.po ├── timeshift-uz.po ├── timeshift-vi.po ├── timeshift-zh_CN.po └── timeshift-zh_TW.po ├── release └── sanity.config ├── src ├── Console │ └── AppConsole.vala ├── Core │ ├── AppExcludeEntry.vala │ ├── Main.vala │ ├── Snapshot.vala │ ├── SnapshotRepo.vala │ └── Subvolume.vala ├── Gtk │ ├── AppGtk.vala │ ├── BackupBox.vala │ ├── BackupDeviceBox.vala │ ├── BackupFinishBox.vala │ ├── BackupWindow.vala │ ├── BootOptionsBox.vala │ ├── BootOptionsWindow.vala │ ├── DeleteBox.vala │ ├── DeleteFinishBox.vala │ ├── DeleteWindow.vala │ ├── EstimateBox.vala │ ├── ExcludeAppsBox.vala │ ├── ExcludeBox.vala │ ├── ExcludeListSummaryWindow.vala │ ├── ExcludeMessageWindow.vala │ ├── FinishBox.vala │ ├── MainWindow.vala │ ├── MiscBox.vala │ ├── RestoreBox.vala │ ├── RestoreDeviceBox.vala │ ├── RestoreExcludeBox.vala │ ├── RestoreFinishBox.vala │ ├── RestoreSummaryBox.vala │ ├── RestoreWindow.vala │ ├── RsyncLogBox.vala │ ├── RsyncLogWindow.vala │ ├── ScheduleBox.vala │ ├── SettingsWindow.vala │ ├── SetupWizardWindow.vala │ ├── SnapshotBackendBox.vala │ ├── SnapshotListBox.vala │ └── UsersBox.vala ├── Utility │ ├── AppLock.vala │ ├── AsyncTask.vala │ ├── CronTab.vala │ ├── CryptTabEntry.vala │ ├── DeleteFileTask.vala │ ├── Device.vala │ ├── FileItem.vala │ ├── FsTabEntry.vala │ ├── Gtk │ │ ├── AboutWindow.vala │ │ ├── CustomMessageDialog.vala │ │ ├── DonationWindow.vala │ │ └── TerminalWindow.vala │ ├── GtkHelper.vala │ ├── IconManager.vala │ ├── LicenseText.vala │ ├── LinuxDistro.vala │ ├── MountEntry.vala │ ├── OSDNotify.vala │ ├── RsyncSpaceCheckTask.vala │ ├── RsyncTask.vala │ ├── SystemUser.vala │ ├── TeeJee.FileSystem.vala │ ├── TeeJee.Json.vala │ ├── TeeJee.Logging.vala │ ├── TeeJee.Misc.vala │ ├── TeeJee.Process.vala │ ├── TeeJee.System.vala │ └── TimeoutCounter.vala ├── makefile ├── share │ ├── icons │ │ └── hicolor │ │ │ ├── 128x128 │ │ │ └── apps │ │ │ │ └── timeshift.png │ │ │ ├── 16x16 │ │ │ └── apps │ │ │ │ └── timeshift.png │ │ │ ├── 22x22 │ │ │ └── apps │ │ │ │ └── timeshift.png │ │ │ ├── 24x24 │ │ │ └── apps │ │ │ │ └── timeshift.png │ │ │ ├── 32x32 │ │ │ └── apps │ │ │ │ └── timeshift.png │ │ │ ├── 48x48 │ │ │ └── apps │ │ │ │ └── timeshift.png │ │ │ ├── 64x64 │ │ │ └── apps │ │ │ │ └── timeshift.png │ │ │ └── 96x96 │ │ │ └── apps │ │ │ └── timeshift.png │ ├── pixmaps │ │ └── timeshift.png │ ├── polkit-1 │ │ └── actions │ │ │ └── in.teejeetech.pkexec.timeshift.policy │ └── timeshift │ │ └── images │ │ ├── clock.png │ │ ├── disk.png │ │ ├── document-open-recent-symbolic.svg │ │ ├── document-save-symbolic.svg │ │ ├── donate.png │ │ ├── drive-harddisk.svg │ │ ├── edit-delete-symbolic.svg │ │ ├── edit-delete.png │ │ ├── emblem-default-symbolic.svg │ │ ├── exclude.png │ │ ├── folder-symbolic.svg │ │ ├── gtk-file.png │ │ ├── include.png │ │ ├── item-blue.png │ │ ├── item-gray.png │ │ ├── item-green.png │ │ ├── item-red.png │ │ ├── item-yellow.png │ │ ├── list-add.png │ │ ├── list-remove.png │ │ ├── locked.png │ │ ├── media-optical.png │ │ ├── open-menu-symbolic.svg │ │ ├── preferences-system-symbolic.svg │ │ ├── timeshift-shield-high.svg │ │ ├── timeshift-shield-low.svg │ │ ├── timeshift-shield-med.svg │ │ └── unlocked.png ├── timeshift-gtk.desktop ├── timeshift-launcher └── timeshift-uninstall ├── timeshift-ru.po └── timeshift.pot /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | Copyright (C) 2020 Tony George (teejeetech@gmail.com) 3 | 4 | -------------------------------------------------------------------------------- /BUILD_CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/BUILD_CONFIG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/_config.yml -------------------------------------------------------------------------------- /archlinux/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/archlinux/PKGBUILD -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/timeshift.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/debian/timeshift.appdata.xml -------------------------------------------------------------------------------- /files/timeshift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/files/timeshift.json -------------------------------------------------------------------------------- /icons/README: -------------------------------------------------------------------------------- 1 | Font is Mathjax_Fractur 2 | -------------------------------------------------------------------------------- /icons/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift.png -------------------------------------------------------------------------------- /icons/timeshift.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift.xcf -------------------------------------------------------------------------------- /icons/timeshift_2_black.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_2_black.xcf -------------------------------------------------------------------------------- /icons/timeshift_2_black_bold.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_2_black_bold.xcf -------------------------------------------------------------------------------- /icons/timeshift_2_white.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_2_white.xcf -------------------------------------------------------------------------------- /icons/timeshift_2_white_bold.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_2_white_bold.xcf -------------------------------------------------------------------------------- /icons/timeshift_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_black.png -------------------------------------------------------------------------------- /icons/timeshift_black_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_black_bold.png -------------------------------------------------------------------------------- /icons/timeshift_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_white.png -------------------------------------------------------------------------------- /icons/timeshift_white_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/icons/timeshift_white_bold.png -------------------------------------------------------------------------------- /images/PayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/PayPal.png -------------------------------------------------------------------------------- /images/bitcoin_qr_code_timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/bitcoin_qr_code_timeshift.png -------------------------------------------------------------------------------- /images/main_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/main_window.png -------------------------------------------------------------------------------- /images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/patreon.png -------------------------------------------------------------------------------- /images/restore_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/restore_summary.png -------------------------------------------------------------------------------- /images/settings_btrfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_btrfs.png -------------------------------------------------------------------------------- /images/settings_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_filters.png -------------------------------------------------------------------------------- /images/settings_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_location.png -------------------------------------------------------------------------------- /images/settings_rsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_rsync.png -------------------------------------------------------------------------------- /images/settings_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_schedule.png -------------------------------------------------------------------------------- /images/settings_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_users.png -------------------------------------------------------------------------------- /images/settings_users_btrfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_users_btrfs.png -------------------------------------------------------------------------------- /images/settings_users_rsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/images/settings_users_rsync.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/makefile -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/makepot -------------------------------------------------------------------------------- /man/timeshift.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/man/timeshift.1.gz -------------------------------------------------------------------------------- /merge-launchpad-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/merge-launchpad-translations.sh -------------------------------------------------------------------------------- /po/timeshift-am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-am.po -------------------------------------------------------------------------------- /po/timeshift-ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ar.po -------------------------------------------------------------------------------- /po/timeshift-az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-az.po -------------------------------------------------------------------------------- /po/timeshift-bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-bg.po -------------------------------------------------------------------------------- /po/timeshift-ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ca.po -------------------------------------------------------------------------------- /po/timeshift-ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ca@valencia.po -------------------------------------------------------------------------------- /po/timeshift-cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-cs.po -------------------------------------------------------------------------------- /po/timeshift-da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-da.po -------------------------------------------------------------------------------- /po/timeshift-de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-de.po -------------------------------------------------------------------------------- /po/timeshift-el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-el.po -------------------------------------------------------------------------------- /po/timeshift-en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-en_GB.po -------------------------------------------------------------------------------- /po/timeshift-es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-es.po -------------------------------------------------------------------------------- /po/timeshift-et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-et.po -------------------------------------------------------------------------------- /po/timeshift-eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-eu.po -------------------------------------------------------------------------------- /po/timeshift-fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-fi.po -------------------------------------------------------------------------------- /po/timeshift-fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-fr.po -------------------------------------------------------------------------------- /po/timeshift-he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-he.po -------------------------------------------------------------------------------- /po/timeshift-hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-hi.po -------------------------------------------------------------------------------- /po/timeshift-hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-hr.po -------------------------------------------------------------------------------- /po/timeshift-hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-hu.po -------------------------------------------------------------------------------- /po/timeshift-ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ia.po -------------------------------------------------------------------------------- /po/timeshift-id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-id.po -------------------------------------------------------------------------------- /po/timeshift-is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-is.po -------------------------------------------------------------------------------- /po/timeshift-it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-it.po -------------------------------------------------------------------------------- /po/timeshift-ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ja.po -------------------------------------------------------------------------------- /po/timeshift-ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ko.po -------------------------------------------------------------------------------- /po/timeshift-lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-lt.po -------------------------------------------------------------------------------- /po/timeshift-nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-nb.po -------------------------------------------------------------------------------- /po/timeshift-ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ne.po -------------------------------------------------------------------------------- /po/timeshift-nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-nl.po -------------------------------------------------------------------------------- /po/timeshift-pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-pl.po -------------------------------------------------------------------------------- /po/timeshift-pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-pt.po -------------------------------------------------------------------------------- /po/timeshift-pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-pt_BR.po -------------------------------------------------------------------------------- /po/timeshift-ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ro.po -------------------------------------------------------------------------------- /po/timeshift-ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-ru.po -------------------------------------------------------------------------------- /po/timeshift-sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-sk.po -------------------------------------------------------------------------------- /po/timeshift-sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-sr.po -------------------------------------------------------------------------------- /po/timeshift-sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-sv.po -------------------------------------------------------------------------------- /po/timeshift-tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-tr.po -------------------------------------------------------------------------------- /po/timeshift-uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-uk.po -------------------------------------------------------------------------------- /po/timeshift-uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-uz.po -------------------------------------------------------------------------------- /po/timeshift-vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-vi.po -------------------------------------------------------------------------------- /po/timeshift-zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-zh_CN.po -------------------------------------------------------------------------------- /po/timeshift-zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/po/timeshift-zh_TW.po -------------------------------------------------------------------------------- /release/sanity.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/release/sanity.config -------------------------------------------------------------------------------- /src/Console/AppConsole.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Console/AppConsole.vala -------------------------------------------------------------------------------- /src/Core/AppExcludeEntry.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Core/AppExcludeEntry.vala -------------------------------------------------------------------------------- /src/Core/Main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Core/Main.vala -------------------------------------------------------------------------------- /src/Core/Snapshot.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Core/Snapshot.vala -------------------------------------------------------------------------------- /src/Core/SnapshotRepo.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Core/SnapshotRepo.vala -------------------------------------------------------------------------------- /src/Core/Subvolume.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Core/Subvolume.vala -------------------------------------------------------------------------------- /src/Gtk/AppGtk.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/AppGtk.vala -------------------------------------------------------------------------------- /src/Gtk/BackupBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/BackupBox.vala -------------------------------------------------------------------------------- /src/Gtk/BackupDeviceBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/BackupDeviceBox.vala -------------------------------------------------------------------------------- /src/Gtk/BackupFinishBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/BackupFinishBox.vala -------------------------------------------------------------------------------- /src/Gtk/BackupWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/BackupWindow.vala -------------------------------------------------------------------------------- /src/Gtk/BootOptionsBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/BootOptionsBox.vala -------------------------------------------------------------------------------- /src/Gtk/BootOptionsWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/BootOptionsWindow.vala -------------------------------------------------------------------------------- /src/Gtk/DeleteBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/DeleteBox.vala -------------------------------------------------------------------------------- /src/Gtk/DeleteFinishBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/DeleteFinishBox.vala -------------------------------------------------------------------------------- /src/Gtk/DeleteWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/DeleteWindow.vala -------------------------------------------------------------------------------- /src/Gtk/EstimateBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/EstimateBox.vala -------------------------------------------------------------------------------- /src/Gtk/ExcludeAppsBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/ExcludeAppsBox.vala -------------------------------------------------------------------------------- /src/Gtk/ExcludeBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/ExcludeBox.vala -------------------------------------------------------------------------------- /src/Gtk/ExcludeListSummaryWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/ExcludeListSummaryWindow.vala -------------------------------------------------------------------------------- /src/Gtk/ExcludeMessageWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/ExcludeMessageWindow.vala -------------------------------------------------------------------------------- /src/Gtk/FinishBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/FinishBox.vala -------------------------------------------------------------------------------- /src/Gtk/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/MainWindow.vala -------------------------------------------------------------------------------- /src/Gtk/MiscBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/MiscBox.vala -------------------------------------------------------------------------------- /src/Gtk/RestoreBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RestoreBox.vala -------------------------------------------------------------------------------- /src/Gtk/RestoreDeviceBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RestoreDeviceBox.vala -------------------------------------------------------------------------------- /src/Gtk/RestoreExcludeBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RestoreExcludeBox.vala -------------------------------------------------------------------------------- /src/Gtk/RestoreFinishBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RestoreFinishBox.vala -------------------------------------------------------------------------------- /src/Gtk/RestoreSummaryBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RestoreSummaryBox.vala -------------------------------------------------------------------------------- /src/Gtk/RestoreWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RestoreWindow.vala -------------------------------------------------------------------------------- /src/Gtk/RsyncLogBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RsyncLogBox.vala -------------------------------------------------------------------------------- /src/Gtk/RsyncLogWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/RsyncLogWindow.vala -------------------------------------------------------------------------------- /src/Gtk/ScheduleBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/ScheduleBox.vala -------------------------------------------------------------------------------- /src/Gtk/SettingsWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/SettingsWindow.vala -------------------------------------------------------------------------------- /src/Gtk/SetupWizardWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/SetupWizardWindow.vala -------------------------------------------------------------------------------- /src/Gtk/SnapshotBackendBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/SnapshotBackendBox.vala -------------------------------------------------------------------------------- /src/Gtk/SnapshotListBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/SnapshotListBox.vala -------------------------------------------------------------------------------- /src/Gtk/UsersBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Gtk/UsersBox.vala -------------------------------------------------------------------------------- /src/Utility/AppLock.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/AppLock.vala -------------------------------------------------------------------------------- /src/Utility/AsyncTask.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/AsyncTask.vala -------------------------------------------------------------------------------- /src/Utility/CronTab.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/CronTab.vala -------------------------------------------------------------------------------- /src/Utility/CryptTabEntry.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/CryptTabEntry.vala -------------------------------------------------------------------------------- /src/Utility/DeleteFileTask.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/DeleteFileTask.vala -------------------------------------------------------------------------------- /src/Utility/Device.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/Device.vala -------------------------------------------------------------------------------- /src/Utility/FileItem.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/FileItem.vala -------------------------------------------------------------------------------- /src/Utility/FsTabEntry.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/FsTabEntry.vala -------------------------------------------------------------------------------- /src/Utility/Gtk/AboutWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/Gtk/AboutWindow.vala -------------------------------------------------------------------------------- /src/Utility/Gtk/CustomMessageDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/Gtk/CustomMessageDialog.vala -------------------------------------------------------------------------------- /src/Utility/Gtk/DonationWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/Gtk/DonationWindow.vala -------------------------------------------------------------------------------- /src/Utility/Gtk/TerminalWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/Gtk/TerminalWindow.vala -------------------------------------------------------------------------------- /src/Utility/GtkHelper.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/GtkHelper.vala -------------------------------------------------------------------------------- /src/Utility/IconManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/IconManager.vala -------------------------------------------------------------------------------- /src/Utility/LicenseText.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/LicenseText.vala -------------------------------------------------------------------------------- /src/Utility/LinuxDistro.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/LinuxDistro.vala -------------------------------------------------------------------------------- /src/Utility/MountEntry.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/MountEntry.vala -------------------------------------------------------------------------------- /src/Utility/OSDNotify.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/OSDNotify.vala -------------------------------------------------------------------------------- /src/Utility/RsyncSpaceCheckTask.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/RsyncSpaceCheckTask.vala -------------------------------------------------------------------------------- /src/Utility/RsyncTask.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/RsyncTask.vala -------------------------------------------------------------------------------- /src/Utility/SystemUser.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/SystemUser.vala -------------------------------------------------------------------------------- /src/Utility/TeeJee.FileSystem.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/TeeJee.FileSystem.vala -------------------------------------------------------------------------------- /src/Utility/TeeJee.Json.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/TeeJee.Json.vala -------------------------------------------------------------------------------- /src/Utility/TeeJee.Logging.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/TeeJee.Logging.vala -------------------------------------------------------------------------------- /src/Utility/TeeJee.Misc.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/TeeJee.Misc.vala -------------------------------------------------------------------------------- /src/Utility/TeeJee.Process.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/TeeJee.Process.vala -------------------------------------------------------------------------------- /src/Utility/TeeJee.System.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/TeeJee.System.vala -------------------------------------------------------------------------------- /src/Utility/TimeoutCounter.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/Utility/TimeoutCounter.vala -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/makefile -------------------------------------------------------------------------------- /src/share/icons/hicolor/128x128/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/128x128/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/icons/hicolor/16x16/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/16x16/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/icons/hicolor/22x22/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/22x22/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/icons/hicolor/24x24/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/24x24/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/icons/hicolor/32x32/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/32x32/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/icons/hicolor/48x48/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/48x48/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/icons/hicolor/64x64/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/64x64/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/icons/hicolor/96x96/apps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/icons/hicolor/96x96/apps/timeshift.png -------------------------------------------------------------------------------- /src/share/pixmaps/timeshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/pixmaps/timeshift.png -------------------------------------------------------------------------------- /src/share/polkit-1/actions/in.teejeetech.pkexec.timeshift.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/polkit-1/actions/in.teejeetech.pkexec.timeshift.policy -------------------------------------------------------------------------------- /src/share/timeshift/images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/clock.png -------------------------------------------------------------------------------- /src/share/timeshift/images/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/disk.png -------------------------------------------------------------------------------- /src/share/timeshift/images/document-open-recent-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/document-open-recent-symbolic.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/document-save-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/document-save-symbolic.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/donate.png -------------------------------------------------------------------------------- /src/share/timeshift/images/drive-harddisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/drive-harddisk.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/edit-delete-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/edit-delete-symbolic.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/edit-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/edit-delete.png -------------------------------------------------------------------------------- /src/share/timeshift/images/emblem-default-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/emblem-default-symbolic.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/exclude.png -------------------------------------------------------------------------------- /src/share/timeshift/images/folder-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/folder-symbolic.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/gtk-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/gtk-file.png -------------------------------------------------------------------------------- /src/share/timeshift/images/include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/include.png -------------------------------------------------------------------------------- /src/share/timeshift/images/item-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/item-blue.png -------------------------------------------------------------------------------- /src/share/timeshift/images/item-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/item-gray.png -------------------------------------------------------------------------------- /src/share/timeshift/images/item-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/item-green.png -------------------------------------------------------------------------------- /src/share/timeshift/images/item-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/item-red.png -------------------------------------------------------------------------------- /src/share/timeshift/images/item-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/item-yellow.png -------------------------------------------------------------------------------- /src/share/timeshift/images/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/list-add.png -------------------------------------------------------------------------------- /src/share/timeshift/images/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/list-remove.png -------------------------------------------------------------------------------- /src/share/timeshift/images/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/locked.png -------------------------------------------------------------------------------- /src/share/timeshift/images/media-optical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/media-optical.png -------------------------------------------------------------------------------- /src/share/timeshift/images/open-menu-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/open-menu-symbolic.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/preferences-system-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/preferences-system-symbolic.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/timeshift-shield-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/timeshift-shield-high.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/timeshift-shield-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/timeshift-shield-low.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/timeshift-shield-med.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/timeshift-shield-med.svg -------------------------------------------------------------------------------- /src/share/timeshift/images/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/share/timeshift/images/unlocked.png -------------------------------------------------------------------------------- /src/timeshift-gtk.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/timeshift-gtk.desktop -------------------------------------------------------------------------------- /src/timeshift-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/timeshift-launcher -------------------------------------------------------------------------------- /src/timeshift-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/src/timeshift-uninstall -------------------------------------------------------------------------------- /timeshift-ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/timeshift-ru.po -------------------------------------------------------------------------------- /timeshift.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/timeshift/HEAD/timeshift.pot --------------------------------------------------------------------------------