aboutsummaryrefslogtreecommitdiffstats
path: root/mail-overview/Accounts.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mail-overview/Accounts.qml')
-rw-r--r--mail-overview/Accounts.qml24
1 files changed, 2 insertions, 22 deletions
diff --git a/mail-overview/Accounts.qml b/mail-overview/Accounts.qml
index 27cdcf9..0ae6886 100644
--- a/mail-overview/Accounts.qml
+++ b/mail-overview/Accounts.qml
@@ -184,32 +184,12 @@ Singleton {
accounts = next;
}
- // Launching qtmaildir, and syncing. qtmaildir takes no arguments, so
- // there is nothing to tell it about the account or thread clicked.
+ // Launching qtmaildir. It takes no arguments, so there is nothing to tell
+ // it about the account or thread clicked.
Process { id: openProc; command: [`${Quickshell.env("HOME")}/bin/qtmaildir`] }
function openClient() {
openProc.running = false;
openProc.running = true;
}
-
- property bool syncing: false
-
- // mailsync.sh is already lock-protected against a concurrent cron run, so
- // this does not need its own guard beyond not stacking clicks.
- Process {
- id: syncProc
- command: [`${Quickshell.env("HOME")}/bin/mailsync.sh`]
- onExited: {
- root.syncing = false;
- root.refresh();
- }
- }
-
- function sync() {
- if (syncing) return;
- syncing = true;
- syncProc.running = false;
- syncProc.running = true;
- }
}