fix(users/Profpatsch): remove alacritty from DisplayBrightness name

Change-Id: Ic78b17a3d5bcc96350dca8f71ad489f0ba96c6d0
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12892
Reviewed-by: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
This commit is contained in:
Profpatsch 2024-12-13 20:52:19 +01:00
parent e1fda52bed
commit 1ec787a417

View file

@ -830,12 +830,10 @@ async function onDdcutilBrightnessChange(externalBrightness) {
}
async function exportDisplayBrightnessDbusInterface() {
console.log(
'Exporting display brightness interface de.profpatsch.alacritty.DisplayBrightness',
);
const ifaceName = 'de.profpatsch.alacritty.DisplayBrightness';
console.log('Exporting display brightness interface de.profpatsch.DisplayBrightness');
const ifaceName = 'de.profpatsch.DisplayBrightness';
const iface = {
name: 'de.profpatsch.alacritty.DisplayBrightness',
name: 'de.profpatsch.DisplayBrightness',
methods: {
// between 0 and 10
SetBrightnessAllMonitors: ['d', ''],
@ -878,12 +876,12 @@ async function exportDisplayBrightnessDbusInterface() {
try {
const retCode = await bus.requestName(ifaceName, 0);
console.log(
`Request name returned ${retCode} for interface de.profpatsch.alacritty.DisplayBrightness`,
`Request name returned ${retCode} for interface de.profpatsch.DisplayBrightness`,
);
bus.exportInterface(ifaceImpl, '/de/profpatsch/alacritty/DisplayBrightness', iface);
console.log('Exported interface de.profpatsch.alacritty.DisplayBrightness');
bus.exportInterface(ifaceImpl, '/de/profpatsch/DisplayBrightness', iface);
console.log('Exported interface de.profpatsch.DisplayBrightness');
} catch (err) {
console.log('Error exporting interface de.profpatsch.alacritty.DisplayBrightness');
console.log('Error exporting interface de.profpatsch.DisplayBrightness');
console.error(err);
}
}