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

View file

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

View file

@ -9,8 +9,8 @@ set -euo pipefail
# Assert $ELDEN_RING_DIR/elden_ring.exe exists
# if it doesn't exist, exit successfully
if [ ! -f "$ELDEN_RING_DIR/elden_ring.exe" ]; then
echo "Already patched"
if [ ! -f "$ELDEN_RING_DIR/eldenring.exe" ]; then
echo "Already patched at $ELDEN_RING_DIR"
exit 0
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
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"