Put Stay Awake first among the default indicators

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018CC9kSQv8ZEogaxDoeKBzL
This commit is contained in:
David Heinemeier Hansson
2026-07-24 19:11:57 -07:00
co-authored by Claude Opus 5
parent be781574d1
commit a7285cfecb
2 changed files with 6 additions and 6 deletions
@@ -26,6 +26,11 @@
"placeholderText": "Search indicators...", "placeholderText": "Search indicators...",
"emptyText": "No indicators", "emptyText": "No indicators",
"options": [ "options": [
{
"value": "StayAwake",
"label": "Stay awake",
"description": "Idle lock and screensaver override"
},
{ {
"value": "Dnd", "value": "Dnd",
"label": "Do not disturb", "label": "Do not disturb",
@@ -46,11 +51,6 @@
"label": "Night light", "label": "Night light",
"description": "Blue-light filter" "description": "Blue-light filter"
}, },
{
"value": "StayAwake",
"label": "Stay awake",
"description": "Idle lock and screensaver override"
},
{ {
"value": "ScreenRecording", "value": "ScreenRecording",
"label": "Screen recording", "label": "Screen recording",
+1 -1
View File
@@ -8,7 +8,7 @@ BarWidget {
id: root id: root
moduleName: "omarchy.indicators" moduleName: "omarchy.indicators"
readonly property var defaultIndicatorEntries: [ "Dnd", "Reminder", "TmuxAlert", "NightLight", "StayAwake", "ScreenRecording", "Dictation" ] readonly property var defaultIndicatorEntries: [ "StayAwake", "Dnd", "Reminder", "TmuxAlert", "NightLight", "ScreenRecording", "Dictation" ]
readonly property var indicatorEntries: indicatorEntriesFromSettings(settings) readonly property var indicatorEntries: indicatorEntriesFromSettings(settings)
property var activeIndicatorIds: [] property var activeIndicatorIds: []
property var indicatorActiveStates: ({}) property var indicatorActiveStates: ({})