ca36b15af1
- Python CLI (click): discover, status, on/off/toggle, brightness, temperature, info - mDNS discovery via zeroconf for automatic light detection - Shared config at ~/.config/elgato-cli/config.json - KDE Plasma 6 plasmoid with system tray icon, power/brightness/temperature controls - Plasmoid uses XMLHttpRequest directly to light API (no CLI dependency) - Unit tests for API client with mocked HTTP responses
22 lines
823 B
XML
22 lines
823 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
|
|
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
|
|
<kcfgfile name=""/>
|
|
<group name="General">
|
|
<entry name="lightHost" type="String">
|
|
<label>Elgato light IP address or hostname</label>
|
|
<default></default>
|
|
</entry>
|
|
<entry name="lightPort" type="Int">
|
|
<label>Elgato light port</label>
|
|
<default>9123</default>
|
|
</entry>
|
|
<entry name="pollInterval" type="Int">
|
|
<label>Polling interval in milliseconds</label>
|
|
<default>3000</default>
|
|
</entry>
|
|
</group>
|
|
</kcfg>
|