├── .ansible-lint ├── .gitattributes ├── .github ├── copilot-instructions.md └── workflows │ ├── documentation.yaml │ ├── macos.yaml │ ├── release-please.yaml │ ├── reviewdog.yaml │ ├── ubuntu.yaml │ └── wsl.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .release-please-manifest.json ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── add_zscaler_root_cert.sh ├── ansible.cfg ├── docs ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── README.md ├── app.config.ts ├── bun.lockb ├── content │ ├── 0.index.md │ └── 1.documentation │ │ ├── 1.getting-started.md │ │ ├── 2.installation.md │ │ ├── 3.usage.md │ │ ├── 4.whats-installed.md │ │ ├── 5.testing.md │ │ ├── 6.faq.md │ │ ├── 7.CONTRIBUTING.md │ │ ├── 8.CODE-OF-CONDUCT.md │ │ ├── 9.license.md │ │ └── _dir.yaml ├── nuxt.config.ts ├── package.json ├── public │ ├── cover.png │ └── favicon.ico ├── renovate.json ├── tokens.config.ts └── tsconfig.json ├── playbook.yaml ├── playbook_macos.yaml ├── post-installation ├── README.md ├── defaults │ ├── .config │ │ ├── alacritty │ │ │ └── alacritty.yaml │ │ ├── autostart │ │ │ └── theme_changer.desktop │ │ ├── helix │ │ │ └── config.toml │ │ ├── input-remapper │ │ │ ├── config.json │ │ │ ├── presets │ │ │ │ └── Logitech MX Master 3 │ │ │ │ │ └── Mouse 5.json │ │ │ └── xmodmap.json │ │ ├── kitty │ │ │ ├── kitty.conf │ │ │ └── one_dark.conf │ │ ├── libinput-gestures.conf │ │ ├── nvim │ │ │ └── init.vim │ │ ├── redshift.conf │ │ └── terminator │ │ │ └── config │ ├── .git-templates-sample │ │ └── hooks │ │ │ ├── commit-msg │ │ │ └── prepare-commit-msg │ ├── .gitconfig │ ├── .p10k.zsh │ ├── .zsh │ │ ├── aliases │ │ │ ├── aliases.plugin.zsh │ │ │ └── directories.plugin.zsh │ │ ├── completions │ │ │ └── _pnpm │ │ └── functions │ │ │ ├── compinit.plugin.zsh │ │ │ └── functions.plugin.zsh │ ├── .zsh_plugins.sh │ ├── .zshrc │ ├── ZscalerRootCA.crt │ ├── dconf-settings │ │ ├── apps.guake.ini │ │ ├── com.linuxmint.updates.ini │ │ ├── org.cinnamon.desktop.ini │ │ ├── org.gnome.desktop.ini │ │ └── org.nemo.ini │ ├── main.yaml │ └── scripts │ │ ├── configure_antidote.sh │ │ └── theme_changer.sh ├── handlers │ └── main.yaml ├── meta │ └── main.yaml ├── molecule │ └── default │ │ ├── converge.yml │ │ ├── molecule.yml │ │ └── verify.yml ├── tasks │ ├── darwin │ │ ├── README.md │ │ ├── dev_tools_gui.yaml │ │ ├── docker.yaml │ │ ├── fonts.yaml │ │ ├── general_use_software_gui.yaml │ │ ├── golang.yaml │ │ ├── gui_applications.yaml │ │ ├── homebrew.yaml │ │ ├── nvim.yaml │ │ ├── system_setup.yaml │ │ └── vpn.yaml │ ├── debian │ │ ├── README.md │ │ ├── clean_apt.yaml │ │ ├── dconf.yaml │ │ ├── dev_tools_gui.yaml │ │ ├── docker.yaml │ │ ├── fonts.yaml │ │ ├── general_use_software_gui.yaml │ │ ├── golang.yaml │ │ ├── gui_applications.yaml │ │ ├── homebrew.yaml │ │ ├── i3.yaml │ │ ├── libinput_gestures.yaml │ │ ├── nvim.yaml │ │ ├── system_setup.yaml │ │ ├── themes.yaml │ │ └── vpn.yaml │ ├── main.yaml │ └── shared │ │ ├── README.md │ │ ├── ddev.yaml │ │ ├── delete_downloaded_files.yaml │ │ ├── development_foundation.yaml │ │ ├── development_tools.yaml │ │ ├── finalization.yaml │ │ ├── git.yaml │ │ ├── java.yaml │ │ ├── programming_languages.yaml │ │ ├── rust.yaml │ │ ├── shell_environment.yaml │ │ ├── utils │ │ ├── download_font.yaml │ │ ├── install_github_asset.yaml │ │ └── install_remote_deb.yaml │ │ └── zsh.yaml └── vars │ ├── darwin.yaml │ └── debian.yaml ├── release-please-config.json ├── requirements.yaml ├── version.txt └── yamlfmt.yaml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/macos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.github/workflows/macos.yaml -------------------------------------------------------------------------------- /.github/workflows/release-please.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.github/workflows/release-please.yaml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.github/workflows/reviewdog.yaml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.github/workflows/ubuntu.yaml -------------------------------------------------------------------------------- /.github/workflows/wsl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.github/workflows/wsl.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "2.4.1" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["redhat.ansible"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/README.md -------------------------------------------------------------------------------- /add_zscaler_root_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/add_zscaler_root_cert.sh -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/ansible.cfg -------------------------------------------------------------------------------- /docs/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/.eslintrc.cjs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/app.config.ts -------------------------------------------------------------------------------- /docs/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/bun.lockb -------------------------------------------------------------------------------- /docs/content/0.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/0.index.md -------------------------------------------------------------------------------- /docs/content/1.documentation/1.getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/1.getting-started.md -------------------------------------------------------------------------------- /docs/content/1.documentation/2.installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/2.installation.md -------------------------------------------------------------------------------- /docs/content/1.documentation/3.usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/3.usage.md -------------------------------------------------------------------------------- /docs/content/1.documentation/4.whats-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/4.whats-installed.md -------------------------------------------------------------------------------- /docs/content/1.documentation/5.testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/5.testing.md -------------------------------------------------------------------------------- /docs/content/1.documentation/6.faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/6.faq.md -------------------------------------------------------------------------------- /docs/content/1.documentation/7.CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/7.CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/content/1.documentation/8.CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/8.CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /docs/content/1.documentation/9.license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/9.license.md -------------------------------------------------------------------------------- /docs/content/1.documentation/_dir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/content/1.documentation/_dir.yaml -------------------------------------------------------------------------------- /docs/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/nuxt.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/public/cover.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/renovate.json -------------------------------------------------------------------------------- /docs/tokens.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/docs/tokens.config.ts -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.nuxt/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/playbook.yaml -------------------------------------------------------------------------------- /playbook_macos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/playbook_macos.yaml -------------------------------------------------------------------------------- /post-installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/README.md -------------------------------------------------------------------------------- /post-installation/defaults/.config/alacritty/alacritty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/alacritty/alacritty.yaml -------------------------------------------------------------------------------- /post-installation/defaults/.config/autostart/theme_changer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/autostart/theme_changer.desktop -------------------------------------------------------------------------------- /post-installation/defaults/.config/helix/config.toml: -------------------------------------------------------------------------------- 1 | theme = "onedark" 2 | -------------------------------------------------------------------------------- /post-installation/defaults/.config/input-remapper/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/input-remapper/config.json -------------------------------------------------------------------------------- /post-installation/defaults/.config/input-remapper/presets/Logitech MX Master 3/Mouse 5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/input-remapper/presets/Logitech MX Master 3/Mouse 5.json -------------------------------------------------------------------------------- /post-installation/defaults/.config/input-remapper/xmodmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/input-remapper/xmodmap.json -------------------------------------------------------------------------------- /post-installation/defaults/.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /post-installation/defaults/.config/kitty/one_dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/kitty/one_dark.conf -------------------------------------------------------------------------------- /post-installation/defaults/.config/libinput-gestures.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/libinput-gestures.conf -------------------------------------------------------------------------------- /post-installation/defaults/.config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/nvim/init.vim -------------------------------------------------------------------------------- /post-installation/defaults/.config/redshift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/redshift.conf -------------------------------------------------------------------------------- /post-installation/defaults/.config/terminator/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.config/terminator/config -------------------------------------------------------------------------------- /post-installation/defaults/.git-templates-sample/hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.git-templates-sample/hooks/commit-msg -------------------------------------------------------------------------------- /post-installation/defaults/.git-templates-sample/hooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.git-templates-sample/hooks/prepare-commit-msg -------------------------------------------------------------------------------- /post-installation/defaults/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.gitconfig -------------------------------------------------------------------------------- /post-installation/defaults/.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.p10k.zsh -------------------------------------------------------------------------------- /post-installation/defaults/.zsh/aliases/aliases.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.zsh/aliases/aliases.plugin.zsh -------------------------------------------------------------------------------- /post-installation/defaults/.zsh/aliases/directories.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.zsh/aliases/directories.plugin.zsh -------------------------------------------------------------------------------- /post-installation/defaults/.zsh/completions/_pnpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.zsh/completions/_pnpm -------------------------------------------------------------------------------- /post-installation/defaults/.zsh/functions/compinit.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.zsh/functions/compinit.plugin.zsh -------------------------------------------------------------------------------- /post-installation/defaults/.zsh/functions/functions.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.zsh/functions/functions.plugin.zsh -------------------------------------------------------------------------------- /post-installation/defaults/.zsh_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.zsh_plugins.sh -------------------------------------------------------------------------------- /post-installation/defaults/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/.zshrc -------------------------------------------------------------------------------- /post-installation/defaults/ZscalerRootCA.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/ZscalerRootCA.crt -------------------------------------------------------------------------------- /post-installation/defaults/dconf-settings/apps.guake.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/dconf-settings/apps.guake.ini -------------------------------------------------------------------------------- /post-installation/defaults/dconf-settings/com.linuxmint.updates.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/dconf-settings/com.linuxmint.updates.ini -------------------------------------------------------------------------------- /post-installation/defaults/dconf-settings/org.cinnamon.desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/dconf-settings/org.cinnamon.desktop.ini -------------------------------------------------------------------------------- /post-installation/defaults/dconf-settings/org.gnome.desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/dconf-settings/org.gnome.desktop.ini -------------------------------------------------------------------------------- /post-installation/defaults/dconf-settings/org.nemo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/dconf-settings/org.nemo.ini -------------------------------------------------------------------------------- /post-installation/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/main.yaml -------------------------------------------------------------------------------- /post-installation/defaults/scripts/configure_antidote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/scripts/configure_antidote.sh -------------------------------------------------------------------------------- /post-installation/defaults/scripts/theme_changer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/defaults/scripts/theme_changer.sh -------------------------------------------------------------------------------- /post-installation/handlers/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/handlers/main.yaml -------------------------------------------------------------------------------- /post-installation/meta/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/meta/main.yaml -------------------------------------------------------------------------------- /post-installation/molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/molecule/default/converge.yml -------------------------------------------------------------------------------- /post-installation/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/molecule/default/molecule.yml -------------------------------------------------------------------------------- /post-installation/molecule/default/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/molecule/default/verify.yml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/README.md -------------------------------------------------------------------------------- /post-installation/tasks/darwin/dev_tools_gui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/dev_tools_gui.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/docker.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/fonts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/fonts.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/general_use_software_gui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/general_use_software_gui.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/golang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/golang.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/gui_applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/gui_applications.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/homebrew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/homebrew.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/nvim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/nvim.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/system_setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/system_setup.yaml -------------------------------------------------------------------------------- /post-installation/tasks/darwin/vpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/darwin/vpn.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/README.md -------------------------------------------------------------------------------- /post-installation/tasks/debian/clean_apt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/clean_apt.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/dconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/dconf.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/dev_tools_gui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/dev_tools_gui.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/docker.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/fonts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/fonts.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/general_use_software_gui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/general_use_software_gui.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/golang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/golang.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/gui_applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/gui_applications.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/homebrew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/homebrew.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/i3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/i3.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/libinput_gestures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/libinput_gestures.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/nvim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/nvim.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/system_setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/system_setup.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/themes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/themes.yaml -------------------------------------------------------------------------------- /post-installation/tasks/debian/vpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/debian/vpn.yaml -------------------------------------------------------------------------------- /post-installation/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/main.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/README.md -------------------------------------------------------------------------------- /post-installation/tasks/shared/ddev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/ddev.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/delete_downloaded_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/delete_downloaded_files.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/development_foundation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/development_foundation.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/development_tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/development_tools.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/finalization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/finalization.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/git.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/git.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/java.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/programming_languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/programming_languages.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/rust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/rust.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/shell_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/shell_environment.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/utils/download_font.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/utils/download_font.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/utils/install_github_asset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/utils/install_github_asset.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/utils/install_remote_deb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/utils/install_remote_deb.yaml -------------------------------------------------------------------------------- /post-installation/tasks/shared/zsh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/tasks/shared/zsh.yaml -------------------------------------------------------------------------------- /post-installation/vars/darwin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/vars/darwin.yaml -------------------------------------------------------------------------------- /post-installation/vars/debian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/post-installation/vars/debian.yaml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/release-please-config.json -------------------------------------------------------------------------------- /requirements.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: 3 | - name: community.general 4 | version: ">=1.0.0" 5 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 2.4.1 2 | -------------------------------------------------------------------------------- /yamlfmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerrorSquad/ansible-post-installation/HEAD/yamlfmt.yaml --------------------------------------------------------------------------------