{"id":31074092,"url":"https://github.com/0zzz7y/backup","last_synced_at":"2026-05-18T06:13:12.051Z","repository":{"id":314808199,"uuid":"1054965014","full_name":"0zzz7y/backup","owner":"0zzz7y","description":"A set of lightweight Bash scripts for backing up and restoring workstation configurations and installing essential software.","archived":false,"fork":false,"pushed_at":"2025-09-14T22:00:49.000Z","size":17,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-14T23:37:13.495Z","etag":null,"topics":["backup-script","bash"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0zzz7y.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-11T15:15:44.000Z","updated_at":"2025-09-14T21:59:38.000Z","dependencies_parsed_at":"2025-09-14T23:37:15.821Z","dependency_job_id":"ae5eaa1a-6db1-45cb-813f-625a39911315","html_url":"https://github.com/0zzz7y/backup","commit_stats":null,"previous_names":["0zzz7y/backup"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/0zzz7y/backup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0zzz7y%2Fbackup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0zzz7y%2Fbackup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0zzz7y%2Fbackup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0zzz7y%2Fbackup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0zzz7y","download_url":"https://codeload.github.com/0zzz7y/backup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0zzz7y%2Fbackup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275348511,"owners_count":25448626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-16T02:00:10.229Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backup-script","bash"],"created_at":"2025-09-16T02:02:18.973Z","updated_at":"2026-05-18T06:13:12.032Z","avatar_url":"https://github.com/0zzz7y.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Backup\n\nA set of lightweight Bash scripts for backing up, restoring configurations, installing software and cleaning up the system.\n\n---\n\n## ✦ Backup Script\n\nBacked up items:\n- Flatpak apps list (`flatpaks.txt`)\n- `~/.var/app`\n- `~/.config`\n- `~/.local/share`\n- `~/.gitconfig`\n- `~/.themes`\n- `~/.icons`\n- `~/.ssh`\n- `~/.gnupg`\n- GNOME/KDE settings via dconf (`dconf-settings.ini`)\n\n---\n\n### Usage\n\n```bash\n./backup.sh             # Interactive backup\n./backup.sh --all       # Backup everything without prompts\n./backup.sh --encrypt   # Backup and encrypt with GPG symmetric encryption\n./backup.sh --dir /path # Backup to custom directory (default: $HOME/Backup)\n```\n\n---\n\n## ✦ Restore Script\n\nRestored items:\n\n* Flatpak apps list\n* `~/.var/app`\n* `~/.config`\n* `~/.local/share`\n* `~/.gitconfig`\n* `~/.themes`\n* `~/.icons`\n* `~/.ssh`\n* `~/.gnupg`\n* GNOME/KDE settings via dconf (`dconf-settings.ini`)\n\n---\n\n### Usage\n\n```bash\n./restore.sh                            # Interactive restore from latest backup\n./restore.sh --all                      # Restore everything without prompts\n./restore.sh --decrypt file.tar.gz.gpg  # Decrypt archive and restore from it\n./restore.sh --dir /path                # Restore from custom base backup directory\n./restore.sh --from /path/to/backup     # Restore from a specific backup directory\n./restore.sh --dry-run                  # Preview restore actions without changes\n```\n\n---\n\n## ✦ Install Script\n\nInstalls predefined packages via `dnf`, grouped by categories.\n\n**Categories:**\n\n* Development\n* Editors\n* Utilities\n* Security\n* Desktop\n* Fonts\n* Networking\n\n---\n\n### Usage\n\n```bash\n./install.sh            # Interactive install\n./install.sh --all      # Install all without prompts\n./install.sh --dry-run  # Preview actions without making changes\n```\n\n---\n\n## ✦ Cleanup Script\n\nCleans up files via bleachbit and custom cleanup scripts, grouped by categories.\n\n**Categories:**\n\n* BleachBit\n* Package Manager\n* Kernels\n* Logs \u0026 Journals\n* Snapshots\n* Containers\n\n---\n\n### Usage\n\n```bash\n./cleanup.sh            # Interactive cleanup\n./install.sh --all      # Cleanup all without prompts\n./install.sh --dry-run  # Preview actions without making changes\n```\n\n---\n\n## ✦ Example Workflow\n\n```bash\n# Backup and encrypt everything \n./backup.sh --all --encrypt\n\n# Restore everything from encrypted archive\n./restore.sh --decrypt ~/Backup/YYYYMMDD_HHmmSS.tar.gz.gpg --all\n\n# Install essential software\n./install.sh --all\n\n# Cleans up unwanted files and software\n./cleanup.sh --all\n```\n\n---\n\n\u003e Designed for Linux distro with Flatpak support.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0zzz7y%2Fbackup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0zzz7y%2Fbackup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0zzz7y%2Fbackup/lists"}