This commit is contained in:
Lysec
2026-01-18 15:52:26 +01:00
6 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -19,9 +19,9 @@ Singleton {
property string cacheFile: Settings.cacheDir + "calendar.json"
// Python scripts
readonly property string checkCalendarAvailableScript: Quickshell.shellDir + '/Bin/check-calendar.py'
readonly property string listCalendarsScript: Quickshell.shellDir + '/Bin/list-calendars.py'
readonly property string calendarEventsScript: Quickshell.shellDir + '/Bin/calendar-events.py'
readonly property string checkCalendarAvailableScript: Quickshell.shellDir + '/Bin/calendar/check-calendar.py'
readonly property string listCalendarsScript: Quickshell.shellDir + '/Bin/calendar/list-calendars.py'
readonly property string calendarEventsScript: Quickshell.shellDir + '/Bin/calendar/calendar-events.py'
// Cache file handling
FileView {
+1 -1
View File
@@ -540,7 +540,7 @@ Singleton {
_pauseDiscoveryFor(totalPauseMs);
// Prefer external dev script for pairing/connecting; executed detached
const scriptPath = Quickshell.shellDir + "/Bin/bluetooth-connect.sh";
const scriptPath = Quickshell.shellDir + "/Bin/network/bluetooth-connect.sh";
// Use bash explicitly to avoid relying on executable bit in all environments
btExec(["bash", scriptPath, String(addr), String(pairWait), String(attempts), String(intervalSec)]);
}