├── .gitignore ├── CNAME ├── CONTRIBUTING.md ├── LICENSE.md ├── README.org ├── docs ├── .vuepress │ ├── components │ │ └── MySWUpdatePopup.vue │ ├── config.js │ ├── nav │ │ └── en.js │ ├── public │ │ ├── _redirects │ │ ├── images │ │ │ ├── accordion.gif │ │ │ ├── icons │ │ │ │ ├── icon-128x128.png │ │ │ │ ├── icon-144x144.png │ │ │ │ ├── icon-152x152.png │ │ │ │ ├── icon-192x192.png │ │ │ │ ├── icon-384x384.png │ │ │ │ ├── icon-512x512.png │ │ │ │ ├── icon-72x72.png │ │ │ │ └── icon-96x96.png │ │ │ ├── layouts.gif │ │ │ ├── logo.png │ │ │ ├── mpd.gif │ │ │ ├── ranger.gif │ │ │ ├── refind.png │ │ │ ├── rofi.gif │ │ │ ├── spacemacs.png │ │ │ └── xmobar.gif │ │ └── manifest.json │ └── styles │ │ ├── index.styl │ │ └── palette.styl ├── README.md ├── README.org ├── contributing │ └── README.md ├── core │ ├── README.md │ ├── arch-chroot.md │ ├── base-files.md │ ├── bootloader.md │ ├── configuring.md │ ├── general.md │ ├── partitioning.md │ └── windows-dual-boot.md └── environment │ ├── NetworkManager.md │ ├── README.md │ ├── WireGuard.md │ ├── connman.md │ ├── dotfiles.md │ ├── efi.md │ ├── file-system.md │ ├── git.md │ ├── grub.md │ ├── gui.md │ ├── iwd.md │ ├── laptop.md │ ├── multimedia.md │ ├── networking.md │ ├── nix.md │ ├── package-management.md │ ├── power-management.md │ ├── programming.md │ ├── rEFInd.md │ ├── shell.md │ ├── snapshots.md │ ├── systemd.md │ ├── vim.md │ ├── xmonad.md │ └── xorg.md ├── no-desktop-environment.md ├── package.json └── pnpm-lock.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | archcheatsheet.nicholasglazer.com -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/README.org -------------------------------------------------------------------------------- /docs/.vuepress/components/MySWUpdatePopup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/components/MySWUpdatePopup.vue -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/nav/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/nav/en.js -------------------------------------------------------------------------------- /docs/.vuepress/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/_redirects -------------------------------------------------------------------------------- /docs/.vuepress/public/images/accordion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/accordion.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-128x128.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-144x144.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-152x152.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-192x192.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-384x384.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-512x512.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-72x72.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/icons/icon-96x96.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/layouts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/layouts.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/mpd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/mpd.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/images/ranger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/ranger.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/images/refind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/refind.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/rofi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/rofi.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/images/spacemacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/spacemacs.png -------------------------------------------------------------------------------- /docs/.vuepress/public/images/xmobar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/images/xmobar.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/public/manifest.json -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/README.org -------------------------------------------------------------------------------- /docs/contributing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/contributing/README.md -------------------------------------------------------------------------------- /docs/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/README.md -------------------------------------------------------------------------------- /docs/core/arch-chroot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/arch-chroot.md -------------------------------------------------------------------------------- /docs/core/base-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/base-files.md -------------------------------------------------------------------------------- /docs/core/bootloader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/bootloader.md -------------------------------------------------------------------------------- /docs/core/configuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/configuring.md -------------------------------------------------------------------------------- /docs/core/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/general.md -------------------------------------------------------------------------------- /docs/core/partitioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/partitioning.md -------------------------------------------------------------------------------- /docs/core/windows-dual-boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/core/windows-dual-boot.md -------------------------------------------------------------------------------- /docs/environment/NetworkManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/NetworkManager.md -------------------------------------------------------------------------------- /docs/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/README.md -------------------------------------------------------------------------------- /docs/environment/WireGuard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/WireGuard.md -------------------------------------------------------------------------------- /docs/environment/connman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/connman.md -------------------------------------------------------------------------------- /docs/environment/dotfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/dotfiles.md -------------------------------------------------------------------------------- /docs/environment/efi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/efi.md -------------------------------------------------------------------------------- /docs/environment/file-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/file-system.md -------------------------------------------------------------------------------- /docs/environment/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/git.md -------------------------------------------------------------------------------- /docs/environment/grub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/grub.md -------------------------------------------------------------------------------- /docs/environment/gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/gui.md -------------------------------------------------------------------------------- /docs/environment/iwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/iwd.md -------------------------------------------------------------------------------- /docs/environment/laptop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/laptop.md -------------------------------------------------------------------------------- /docs/environment/multimedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/multimedia.md -------------------------------------------------------------------------------- /docs/environment/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/networking.md -------------------------------------------------------------------------------- /docs/environment/nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/nix.md -------------------------------------------------------------------------------- /docs/environment/package-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/package-management.md -------------------------------------------------------------------------------- /docs/environment/power-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/power-management.md -------------------------------------------------------------------------------- /docs/environment/programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/programming.md -------------------------------------------------------------------------------- /docs/environment/rEFInd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/rEFInd.md -------------------------------------------------------------------------------- /docs/environment/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/shell.md -------------------------------------------------------------------------------- /docs/environment/snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/snapshots.md -------------------------------------------------------------------------------- /docs/environment/systemd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/systemd.md -------------------------------------------------------------------------------- /docs/environment/vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/vim.md -------------------------------------------------------------------------------- /docs/environment/xmonad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/xmonad.md -------------------------------------------------------------------------------- /docs/environment/xorg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/docs/environment/xorg.md -------------------------------------------------------------------------------- /no-desktop-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/no-desktop-environment.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasglazer/archcheatsheet/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------