Remove timeout from Hyprpanel notifications. (#597)

This commit is contained in:
Jas Singh
2024-12-22 13:42:47 -08:00
committed by GitHub
parent 78e339adcf
commit 97e852cf94
7 changed files with 0 additions and 9 deletions

View File

@@ -44,7 +44,6 @@ export function warnOnLowBattery(): void {
body: lowBatteryNotificationText.get().replace('$POWER_LEVEL', batteryPercentage.toString()),
iconName: icons.ui.warning,
urgency: 'critical',
timeout: 7000,
});
}
});

View File

@@ -198,7 +198,6 @@ export function dependencies(...bins: string[]): boolean {
summary: 'Dependencies not found!',
body: `The following dependencies are missing: ${missing.join(', ')}`,
iconName: icons.ui.warning,
timeout: 7000,
});
}