{"id":31074184,"url":"https://github.com/marcs-sus/linux-survival-kit","last_synced_at":"2026-05-15T21:01:55.798Z","repository":{"id":313986329,"uuid":"1051300302","full_name":"marcs-sus/linux-survival-kit","owner":"marcs-sus","description":"Combination of tutorials, tips and scripts to help begginers at desktop Linux","archived":false,"fork":false,"pushed_at":"2025-10-03T00:18:49.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-03T02:35:53.630Z","etag":null,"topics":["desktop-linux","guides","kit","linux","shell"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marcs-sus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-05T18:53:16.000Z","updated_at":"2025-10-03T00:18:53.000Z","dependencies_parsed_at":"2025-09-09T23:49:57.138Z","dependency_job_id":"133c77ad-a5c2-45d8-ab2a-7cc678a7c418","html_url":"https://github.com/marcs-sus/linux-survival-kit","commit_stats":null,"previous_names":["marcs-sus/linux-survival-kit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marcs-sus/linux-survival-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcs-sus%2Flinux-survival-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcs-sus%2Flinux-survival-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcs-sus%2Flinux-survival-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcs-sus%2Flinux-survival-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcs-sus","download_url":"https://codeload.github.com/marcs-sus/linux-survival-kit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcs-sus%2Flinux-survival-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278241688,"owners_count":25954481,"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-10-03T02:00:06.070Z","response_time":53,"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":["desktop-linux","guides","kit","linux","shell"],"created_at":"2025-09-16T02:05:29.271Z","updated_at":"2026-05-15T21:01:55.791Z","avatar_url":"https://github.com/marcs-sus.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linux Desktop Survival Kit\n\nA curated collection of scripts, guides, and configurations to streamline the setup and maintenance of Linux desktop environments. Whether you're setting up a new system or hardening an existing one, this toolkit provides practical solutions for common tasks.\n\n\u003ch2 id=\"table-of-contents\"\u003e📋 Table of Contents\u003c/h2\u003e\n\n- [Quick Start](#quick-start)\n- [Guides](#guides)\n- [Scripts](#scripts)\n- [Systemd Services](#systemd-services)\n- [License](#license)\n- [Acknowledgments](#acknowledgments)\n\n\u003ch2 id=\"quick-start\"\u003eQuick Start\u003c/h2\u003e\n\nClone the repository:\n\n```bash\ngit clone https://github.com/yourusername/linux-desktop-survival-kit.git\ncd linux-desktop-survival-kit\n```\n\nMake scripts executable:\n\n```bash\nchmod +x **/*.sh\n```\n\nRun any script with:\n\n```bash\nsudo ./path/to/script.sh\n```\n\n\u003ch2 id=\"guides\"\u003e📚 Guides\u003c/h2\u003e\n\nComprehensive guides covering setup and configuration:\n\n| Guide                                                           | Description                                                                                             |\n| --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |\n| [APT Package Manager](Package-Manager/package-manager-guide.md) | Complete reference for APT commands, frontends (Nala), and alternative package managers (Snap, Flatpak) |\n| [Firmware Updating](Firmware/firmware-updating.md)              | Keep your hardware firmware up-to-date with `fwupd`                                                     |\n| [UFW Firewall Setup](Firewall/firewall-setup.md)                | Simple yet effective firewall configuration with UFW                                                    |\n| [LUKS and TPM2 Auto Decryption](Encryption/luks-tpm2-setup.md)  | Configure automatic disk decryption using TPM 2.0 hardware security chips                               |\n\n\u003ch2 id=\"scripts\"\u003e🔧 Scripts\u003c/h2\u003e\n\nAll scripts include error handling, colored output, and helpful feedback.\nThey can be placed in `/usr/local/bin/` for system-wide execution or `~/.local/bin/` for user-specific execution. But most can be run from anywhere.\n\n| Script                                                       | Description                                                                                     | Usage                                                |\n| ------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- | ---------------------------------------------------- |\n| [ufw-config.sh](Firewall/ufw-config.sh)                      | Installs and configures UFW with secure defaults, rate limiting for SSH, and opens common ports | `sudo ./Firewall/ufw-config.sh`                      |\n| [debian-update-all.sh](Package-Manager/debian-update-all.sh) | Updates packages across APT, Flatpak, and Snap; supports APT frontends (Nala, Aptitude)         | `sudo ./Package-Manager/debian-update-all.sh`        |\n| [arch-update-all.sh](Package-Manager/arch-update-all.sh)     | Updates packages across pacman, AUR (yay/paru), Flatpak, and Snap                               | `sudo ./Package-Manager/arch-update-all.sh`          |\n| [fwupd-flow.sh](Firmware/fwupd-flow.sh)                      | Automates firmware update workflow: checks devices, refreshes metadata, and installs updates    | `sudo ./Firmware/fwupd-flow.sh`                      |\n| [git-autosync.sh](Scripts/Automation/git-autosync.sh)        | Syncs Git repositories (fetch, pull, push); supports recursive scanning                         | `./Scripts/Automation/git-autosync.sh [--recursive]` |\n| [auto-aliases.sh](Scripts/Automation/auto-aliases.sh)        | Automatically creates aliases and organizes them into ~/.\u003cSHELL_NAME\u003e\\_aliases                  | `./Scripts/Automation/auto-aliases.sh`               |\n| [install-chrome.sh](Misc/install-chrome.sh)                  | Installs Google Chrome with proper repository setup and signing keys                            | `sudo ./Misc/install-chrome.sh`                      |\n| [switch-audio.sh](Scripts/System/switch-audio.sh)            | Switches audio output between available PulseAudio/Pipewire-Pulse sinks                         | `./Scripts/System/switch-audio.sh`                   |\n\n\u003ch2 id=\"systemd-services\"\u003e⚙️ Systemd Services\u003c/h2\u003e\n\nSystemd unit files for automating system tasks.\nThey can be placed in `/etc/systemd/system/`.\n\n| Unit                                                   | Description                                             | Usage                                                            |\n| ------------------------------------------------------ | ------------------------------------------------------- | ---------------------------------------------------------------- |\n| [rclone-mount@.service](Systemd/rclone-mount@.service) | Mounts an RClone remote as a systemd service (template) | `sudo systemctl enable --now rclone-mount@\u003cremote_name\u003e.service` |\n\n\u003ch2 id=\"license\"\u003eLicense\u003c/h2\u003e\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\u003ch2 id=\"acknowledgments\"\u003eAcknowledgments\u003c/h2\u003e\n\nSpecial thanks to the open-source community for the tools that make these configurations possible:\n\n- UFW (Uncomplicated Firewall)\n- fwupd (Firmware update daemon)\n- systemd-cryptenroll\n- APT and its frontends\n\n---\n\n**Note**: Always review scripts before running them with elevated privileges. While these scripts are designed to be safe, it's good practice to understand what they do to your system.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcs-sus%2Flinux-survival-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcs-sus%2Flinux-survival-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcs-sus%2Flinux-survival-kit/lists"}