From dea9bab518ff434d6460fd5a6c821b63c50d6d54 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 20 Oct 2021 22:08:06 +0200 Subject: [PATCH] updated stuff --- install.sh | 1 + playbook.yml | 23 +++++++++++++++++++++-- requirements.yml | 2 ++ tmp.txt | 1 + 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 requirements.yml create mode 100644 tmp.txt diff --git a/install.sh b/install.sh index db2c635..c7eb610 100644 --- a/install.sh +++ b/install.sh @@ -3,4 +3,5 @@ pacman-key --populate pacman -Syu --noconfirm git ansible git clone https://gitea.maiertobi.de/tobimai/setup_ansible_playbooks.git install cd install +ansible-galaxy install -r requirements.yml ansible-playbook playbook.yml diff --git a/playbook.yml b/playbook.yml index 458aeb9..bd23c08 100644 --- a/playbook.yml +++ b/playbook.yml @@ -12,9 +12,9 @@ update_cache: yes upgrade: yes - - name: Install package sudo from repo + - name: Install packages community.general.pacman: - name: sudo + name: sudo,zsh,htop state: present - name: Make sure we have a 'wheel' group @@ -35,3 +35,22 @@ password: $6$9OnvBMN6Sxc.muW1$afASAJdoPZL/WxTp6.lh/SurRRiClaru2Pl19fEo6j1aDEQw99kdkfls6.DB8OBacBDnT3bpsLYD3JqrvXlE9/ comment: Tobias Maier groups: wheel + + roles: + - role: gantsign.antigen + users: + - username: example + antigen_libraries: + - name: oh-my-zsh + antigen_theme: + name: robbyrussell + antigen_bundles: + # Bundles from the default repo (robbyrussell's oh-my-zsh). + - name: git + - name: heroku + - name: pip + - name: lein + - name: command-not-found + # Syntax highlighting bundle. + - name: zsh-syntax-highlighting # `name` is required (any valid file name will do so long as it's unique for the bundles) + url: zsh-users/zsh-syntax-highlighting diff --git a/requirements.yml b/requirements.yml new file mode 100644 index 0000000..9bae61d --- /dev/null +++ b/requirements.yml @@ -0,0 +1,2 @@ +gantsign.antigen + diff --git a/tmp.txt b/tmp.txt new file mode 100644 index 0000000..5e1c309 --- /dev/null +++ b/tmp.txt @@ -0,0 +1 @@ +Hello World \ No newline at end of file