1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-15 15:45:20 -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 {
id: binaryCheck
command: ["sh", "-c", "command -v dankcal"]
command: ["sh", "-c", "command -v dcal"]
running: false
onExited: code => {
root.binaryExists = (code === 0);
@@ -97,7 +97,7 @@ Item {
function launch() {
if (!binaryExists)
return;
Quickshell.execDetached(["dankcal", "run", "-d", "--hidden"]);
Quickshell.execDetached(["dcal", "run", "-d", "--hidden"]);
if (enabled && !connected)
discoverProcess.running = true;
}