You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,14 +69,14 @@ Plugin to "Launch" linux applications and scripts
69
69
{ "option": "-h"}
70
70
],
71
71
"schedule": {
72
-
"absolute": false,
72
+
"mode": 0,
73
73
"time": "06:04.10"
74
74
}
75
75
}
76
76
```
77
77
78
78
Note:
79
-
1. If field "absolute" is false or not set, it will treat the time as relative
79
+
1. If field "mode" is zero or not set, it will treat the time as relative
80
80
2. If relative time value is "00:00.00"/invalid format/not set, the launcher will ignore the given time and launch the application at the launcher activation time itself.
81
81
3. If time format given is
82
82
a. "XX", treat it as SS
@@ -93,7 +93,7 @@ Note:
93
93
{ "option": "-h"}
94
94
],
95
95
"schedule": {
96
-
"absolute": true,
96
+
"mode": 1,
97
97
"time": "06:04.10"
98
98
}
99
99
}
@@ -121,7 +121,7 @@ Note:
121
121
{ "option": "-h"}
122
122
],
123
123
"schedule": {
124
-
"absolute": false,
124
+
"mode": 2,
125
125
"time": "06:04.10",
126
126
"interval": "00:40.10"
127
127
}
@@ -130,8 +130,9 @@ Note:
130
130
131
131
Note:
132
132
1. If interval value is "00:00.00"/invalid format/not set, the launcher will treat it as invalid value and ignore the interval time settings.
133
-
2. If absolute time given is less than the current time and interval is set, it will identify next matching time and schedule application launch to that time.
133
+
2. If mode is 2 (absolute with interval) and interval is set, it will identify next matching time and schedule application launch to that time.
134
134
i.e, if the absolute time given is 04:00:00, current time is 05:10:00 and interval is 00:30:00, then next scheduling time will be 05:30:00 (will be identified from the next intervals - 04:30:00, 05:00:00, 05:30:00)
135
+
3. If mode is 0(relative) or 1(absolute), the interval time will be taken only for the subsequent scheduling
0 commit comments