1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-16 08:05:19 -04:00

calendar: rename dcal binary

This commit is contained in:
bbedward
2026-06-15 15:26:06 -04:00
parent a098088f03
commit 53cea7023f
+2 -2
View File
@@ -52,7 +52,7 @@ Item {
Process { Process {
id: binaryCheck id: binaryCheck
command: ["sh", "-c", "command -v dankcal"] command: ["sh", "-c", "command -v dcal"]
running: false running: false
onExited: code => { onExited: code => {
root.binaryExists = (code === 0); root.binaryExists = (code === 0);
@@ -97,7 +97,7 @@ Item {
function launch() { function launch() {
if (!binaryExists) if (!binaryExists)
return; return;
Quickshell.execDetached(["dankcal", "run", "-d", "--hidden"]); Quickshell.execDetached(["dcal", "run", "-d", "--hidden"]);
if (enabled && !connected) if (enabled && !connected)
discoverProcess.running = true; discoverProcess.running = true;
} }