Compare commits

...

2 commits

Author SHA1 Message Date
698950d346 fix user prompt? 2024-09-18 23:10:28 +02:00
a3ab71aa36 add unclutter to ansible 2024-09-18 22:59:26 +02:00
2 changed files with 8 additions and 6 deletions

View file

@ -16,10 +16,9 @@ logger.debug("Browser started, opening the page");
const page = await browser const page = await browser
.pages() .pages()
.then((pages) => pages[0] || browser.newPage()); .then((pages) => pages[0] || browser.newPage());
await page.goto("https://meet.freifunk-aachen.de"); await page.goto("https://meet.freifunk-aachen.de/parsifalove");
logger.debug("Joining room"); logger.debug("Joining meeting");
await page.locator("#enter_room_field").fill("parsifalove"); await page.click('[aria-label="Join meeting"]');
await page.locator("#enter_room_button").click();
logger.trace("Waiting for the room to load"); logger.trace("Waiting for the room to load");
await page.waitForSelector("body"); await page.waitForSelector("body");

View file

@ -33,11 +33,14 @@
global: yes global: yes
state: present state: present
- name: Update apt cache and install Git - name: Update apt cache and install Git, unclutter
apt: apt:
name: git name: "{{ item }}"
state: present state: present
update_cache: yes update_cache: yes
loop:
- git
- unclutter
- name: Clone Git repository - name: Clone Git repository
become: yes become: yes