This commit is contained in:
pika 2025-02-17 21:34:54 +01:00
parent 07a64c5aa3
commit c80e2b1272
8 changed files with 0 additions and 359 deletions

View file

@ -0,0 +1,5 @@
@echo off
@REM Start hidden powershell script, which runs `zebar open bar --args ...` for every monitor.
powershell -WindowStyle hidden -Command ^
$monitors = zebar monitors; ^
foreach ($monitor in $monitors) { Start-Process -WindowStyle Hidden -FilePath \"zebar\" -ArgumentList \"open bar --args $monitor\" };