mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-30 03:00:57 +00:00
28 lines
942 B
HTML
28 lines
942 B
HTML
<h2 class="md-title">
|
|
<ng-md-icon icon="settings"></ng-md-icon>
|
|
Misc Settings
|
|
</h2>
|
|
<div>
|
|
<md-switch ng-model="vm.settings.isShortSyntaxEnabled"
|
|
aria-label="Use short syntax (e.g. 'TaskTitleBla e:30m')">
|
|
Use short syntax (e.g. 'TaskTitleBla t:30m') for task creation
|
|
</md-switch>
|
|
</div>
|
|
|
|
<section ng-if="vm.IS_ELECTRON">
|
|
<div>
|
|
<md-switch ng-model="vm.settings.isTakeABreakEnabled"
|
|
aria-label="Enable take a break reminder">
|
|
Enable take a break reminder
|
|
</md-switch>
|
|
</div>
|
|
<md-input-container class="md-block md-icon-float"
|
|
ng-hide="!vm.settings.isTakeABreakEnabled">
|
|
<label>Remind when I worked longer than X without a break</label>
|
|
<ng-md-icon icon="timer"
|
|
aria-label="timer"></ng-md-icon>
|
|
<input type="text"
|
|
input-duration
|
|
ng-model="vm.settings.takeABreakMinWorkingTime">
|
|
</md-input-container>
|
|
</section>
|