Upload files to ".glzr/zebar"

This commit is contained in:
Alexander Pieck 2024-08-01 07:15:57 +00:00
parent 361241aff4
commit d8b083c3a1
3 changed files with 245 additions and 0 deletions

5
.glzr/zebar/start.bat Normal file
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\" };