All checks were successful
dustin/basementhud/pipeline/head This commit looks good
Finally got the HUD controller published somewhere besides my desktop!
11 lines
246 B
Bash
11 lines
246 B
Bash
#!/bin/sh
|
|
|
|
BASE_URL=https://hudctrl.pyrocufflink.blue/api
|
|
xrandr --listactivemonitors \
|
|
| curl "${BASE_URL}"/display/monitors \
|
|
-H 'Content-Type: text/plain' \
|
|
--upload-file -
|
|
|
|
curl "${BASE_URL}"/display/up \
|
|
-d port=2829
|