huge rework in order to take full advantage of ansible roles

This commit is contained in:
aminnairi
2023-12-30 17:05:26 +01:00
parent b961d14b97
commit bf3625081d
73 changed files with 506 additions and 532 deletions
+20
View File
@@ -0,0 +1,20 @@
# Enable flameshot
flameshot &
# Enable background
feh --bg-fill $HOME/.local/share/backgrounds/background.jpg
# Enable natural scrolling on the touchpad
xinput set-prop "QXTP7868:00 27C6:01E8 Touchpad" "libinput Natural Scrolling Enabled" 1
# Enable middle button emulation on the touchpad
xinput set-prop "QXTP7868:00 27C6:01E8 Touchpad" "libinput Middle Emulation Enabled" 1
# Enable two-fingers click
xinput set-prop "QXTP7868:00 27C6:01E8 Touchpad" "libinput Click Method Enabled" 0 1
# Set the compose key
# setxkbmap -option compose:ralt
# Start i3 window manager
exec i3
+35
View File
@@ -0,0 +1,35 @@
---
- name: Install Xorg (X11 server)
become: true
pacman:
name: xorg-server
state: present
- name: Install Xset (Xorg configuration manager)
become: true
pacman:
name: xorg-xset
state: present
- name: Install Xorg AMDGPU (AMD graphics driver for Xorg)
become: true
pacman:
name: xf86-video-amdgpu
state: present
- name: Install Xorg Backlight (brightness manager)
become: true
pacman:
name: xorg-xbacklight
state: present
- name: Install Xorg Xinput (input devices manager)
become: true
pacman:
name: xorg-xinput
state: present
- name: Install Xorg Xinit (Xorg startup script)
become: true
pacman:
name: xorg-xinit
state: present
- name: Setup Xorg Xinit
synchronize:
src: xinit/xinitrc
dest: /$HOME/.xinitrc