1
0
Fork 0

fix arch and aur packages

This commit is contained in:
cătălin 2024-04-20 11:01:19 +02:00
commit 43c002313d
No known key found for this signature in database
4 changed files with 20 additions and 14 deletions

View file

@ -1,5 +1,6 @@
--- ---
- name: Install Arch packages - name: Install Arch packages
become: true
ansible.builtin.package: ansible.builtin.package:
name: name:
# gnome # gnome
@ -9,8 +10,8 @@
- gnome-control-center - gnome-control-center
- gnome-shell-extensions - gnome-shell-extensions
- gnome-themes-extra - gnome-themes-extra
- gnome-shell-extension-dash-to-dock-git
- gnome-browser-connector - gnome-browser-connector
- gnome-tweaks
# dbs # dbs
- postgresql-client - postgresql-client
@ -18,7 +19,6 @@
- unixodbc - unixodbc
# work # work
- visual-studio-code-bin
- azure-cli - azure-cli
# bluetooth # bluetooth
@ -26,10 +26,13 @@
- bluez-utils - bluez-utils
- bluez-deprecated-tools - bluez-deprecated-tools
# docker # containers
- docker - docker
- docker-buildx - docker-buildx
- docker-compose - docker-compose
- kubectl
- k9s
# gayming # gayming
- steam - steam
@ -51,11 +54,15 @@
- libseccomp - libseccomp
- xz - xz
- shellcheck - shellcheck
- kitty
- python-pipx
- exa
# misc # misc
- networkmanager - networkmanager
- ttf-liberation - ttf-liberation
- firefox - firefox
- lutris
state: present state: present
- name: Install aur packages - name: Install aur packages
@ -63,10 +70,12 @@
name: name:
- visual-studio-code-bin - visual-studio-code-bin
- python-pyodbc - python-pyodbc
- gnome-shell-extension-dash-to-dock-git - protonut-qt
- protonqt-up
- jetbrains-toolbox - jetbrains-toolbox
- pipx
- snapd - snapd
- microsoft-edge-stable-bin - microsoft-edge-stable-bin
state: present - gnome-shell-extension-dash-to-dock-git
- gnome-shell-extension-pop-shell-git
- tree-sitter-git
- neovim-git
state: present

View file

@ -17,7 +17,6 @@
- agnostic - agnostic
- name: Install Arch packages - name: Install Arch packages
become: true
when: ansible_os_family == "Archlinux" when: ansible_os_family == "Archlinux"
ansible.builtin.import_tasks: arch.yml ansible.builtin.import_tasks: arch.yml
tags: tags:
@ -56,4 +55,4 @@
become: true become: true
ansible.builtin.import_tasks: snap.yml ansible.builtin.import_tasks: snap.yml
tags: tags:
- snap - snap

View file

@ -18,8 +18,6 @@
ansible.builtin.command: /tmp/sh.rustup.rs -y ansible.builtin.command: /tmp/sh.rustup.rs -y
- name: Install cargo packages - name: Install cargo packages
environment:
PATH: "${PATH}:~/.cargo/bin"
community.general.cargo: community.general.cargo:
name: name:
- git-delta - git-delta

View file

@ -9,8 +9,8 @@ set -euo pipefail
# Assert $ELDEN_RING_DIR/elden_ring.exe exists # Assert $ELDEN_RING_DIR/elden_ring.exe exists
# if it doesn't exist, exit successfully # if it doesn't exist, exit successfully
if [ ! -f "$ELDEN_RING_DIR/elden_ring.exe" ]; then if [ ! -f "$ELDEN_RING_DIR/eldenring.exe" ]; then
echo "Already patched" echo "Already patched at $ELDEN_RING_DIR"
exit 0 exit 0
fi fi
@ -20,5 +20,5 @@ mv "$ELDEN_RING_DIR/start_protected_game.exe" "$ELDEN_RING_DIR/start_protected_g
# Move $ELDEN_RING_DIR/elden_ring.exe to $ELDEN_RING_DIR/start_protected_game.exe # Move $ELDEN_RING_DIR/elden_ring.exe to $ELDEN_RING_DIR/start_protected_game.exe
mv "$ELDEN_RING_DIR/elden_ring.exe" "$ELDEN_RING_DIR/start_protected_game.exe" mv "$ELDEN_RING_DIR/eldenring.exe" "$ELDEN_RING_DIR/start_protected_game.exe"