Compare commits

..

No commits in common. "0bc70a848455a731660ccee7a0aa7231efa91a72" and "d0db9aac63de42665b8c08cbeb7a169e3ed72fb6" have entirely different histories.

5 changed files with 7 additions and 47 deletions

View file

@ -1,5 +1,3 @@
mobile_platform: false
monitors:
- desc: "LG Electronics LG ULTRAGEAR 311NTZN8J917"
output: "DP-1"

View file

@ -1 +0,0 @@
APT::Default-Release "/^testing(|-security|-updates)$/";

View file

@ -1,16 +1,3 @@
- name: Set apt default-release to "testing"
become: yes
copy:
src: "{{ role_path }}/files/20-tum.conf"
dest: "/etc/apt/apt.conf.d/20-tum.conf"
- name: Add unstable repository
become: yes
ansible.builtin.apt_repository:
repo: deb http://deb.debian.org/debian unstable main contrib non-free-firmware
state: present
update_cache: true
- name: Install build dependencies (1/2)
become: yes
apt:
@ -38,8 +25,8 @@
- libpango1.0-dev
- libtomlplusplus-dev
- uuid-dev
- libxcb-errors-dev
# xdg-desktop-portal-hyprland
#- qtbase5-dev
- qt6-base-dev
- libspa-0.2-dev
- libpipewire-0.3-dev
@ -52,26 +39,17 @@
owner: "{{ ansible_user_id }}"
group: "{{ ansible_user_id }}"
loop:
- "hyprutils"
- "hyprwayland-scanner"
- "Hyprland"
- "hyprlang"
- "hyprcursor"
- "xdg-desktop-portal-hyprland"
- name: Checkout hyprutils repo
ansible.builtin.git:
repo: 'https://github.com/hyprwm/hyprutils.git'
dest: /usr/local/src/hyprutils
version: v0.1.4
force: true
recursive: true
- name: Checkout hyprwayland-scanner repo
ansible.builtin.git:
repo: 'https://github.com/hyprwm/hyprwayland-scanner.git'
dest: /usr/local/src/hyprwayland-scanner
version: v0.3.10
version: v0.3.4
force: true
recursive: true
@ -79,7 +57,7 @@
ansible.builtin.git:
repo: 'https://github.com/hyprwm/Hyprland.git'
dest: /usr/local/src/Hyprland
version: v0.41.1
version: v0.40.0
force: true
recursive: true
@ -87,7 +65,7 @@
ansible.builtin.git:
repo: 'https://github.com/hyprwm/hyprlang.git'
dest: /usr/local/src/hyprlang
version: v0.5.2
version: v0.5.1
force: true
recursive: true
@ -95,7 +73,7 @@
ansible.builtin.git:
repo: 'https://github.com/hyprwm/hyprcursor.git'
dest: /usr/local/src/hyprcursor
version: v0.1.9
version: v0.1.8
force: true
recursive: true
@ -107,20 +85,6 @@
force: true
recursive: true
- name: Build hyprutils
ansible.builtin.command:
cmd: "{{ item }}"
chdir: /usr/local/src/hyprutils
loop:
- "cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build"
- "cmake --build ./build --config Release --target all"
- name: Install hyprutils
become: yes
ansible.builtin.command:
cmd: "cmake --install build"
chdir: /usr/local/src/hyprutils
- name: Build hyprwayland-scanner
ansible.builtin.command:
cmd: "{{ item }}"

View file

@ -1,7 +1,6 @@
# Monitor configuration (see https://wiki.hyprland.org/Configuring/Monitors/)
{% for monitor in hostvars[ansible_hostname]['monitors'] %}
monitor=desc:{{ monitor['desc'] }}, {{ monitor['resolution'] }}, {{ monitor['position'] | default('auto') }}, 1{% if 'transform' in monitor %}, transform, {{ monitor['transform'] }}{% endif %}
monitor=desc:{{ monitor['desc'] }}, {{ monitor['resolution'] }}, {{ monitor['position'] | default('auto') }}, 1
{% endfor %}
# Programs to use