The last two stale needles the great respelling left behind

Claude-Session: https://claude.ai/code/session_01Ms2FbjQy31TVf3CEvQhGM8
This commit is contained in:
Gabriel Brown
2026-08-25 02:31:59 -04:00
parent bd2fd12de2
commit 8105849151
6 changed files with 8 additions and 8 deletions
@@ -5,6 +5,6 @@
# @vicinae.mode silent # @vicinae.mode silent
# @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg # @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg
# @vicinae.description Open Connections in Settings. # @vicinae.description Open Connections in Settings.
# @vicinae.keywords ["settings", "wi-fi", "bluetooth", "vpn", "import a vpn", "hotspot", "airplane mode", "network proxy", "ip address", "forget a wi-fi network", "enterprise wi-fi"] # @vicinae.keywords ["settings", "wi-fi", "bluetooth", "vpn", "import a vpn", "hotspot", "airplane mode", "network proxy", "ip address", "forget a wi-fi network", "enterprise wi-fi", "saved networks", "join a hidden network"]
exec "$HOME/.config/quickshell/scripts/panama-action" settings-page connectivity exec "$HOME/.config/quickshell/scripts/panama-action" settings-page connectivity
@@ -5,6 +5,6 @@
# @vicinae.mode silent # @vicinae.mode silent
# @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg # @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg
# @vicinae.description Open Control Center in Settings. # @vicinae.description Open Control Center in Settings.
# @vicinae.keywords ["settings", "focus in control center", "home in control center", "phone in control center", "control center sections"] # @vicinae.keywords ["settings", "focus in control center", "home in control center", "phone in control center", "control center sections", "do not disturb tile"]
exec "$HOME/.config/quickshell/scripts/panama-action" settings-page control-center exec "$HOME/.config/quickshell/scripts/panama-action" settings-page control-center
@@ -5,6 +5,6 @@
# @vicinae.mode silent # @vicinae.mode silent
# @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg # @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg
# @vicinae.description Open Notifications in Settings. # @vicinae.description Open Notifications in Settings.
# @vicinae.keywords ["settings", "notification duration", "critical notification duration", "notification history", "visible banners", "critical alerts break through", "do not disturb", "quiet hours", "application notification rules", "forget an app's notifications", "per-app notification sound", "banners or history"] # @vicinae.keywords ["settings", "notification duration", "critical notification duration", "notification history", "visible banners", "critical alerts break through", "do not disturb", "quiet hours", "application notification rules", "forget an application's notifications", "per-application notification sound", "banners or history"]
exec "$HOME/.config/quickshell/scripts/panama-action" settings-page notifications exec "$HOME/.config/quickshell/scripts/panama-action" settings-page notifications
@@ -5,6 +5,6 @@
# @vicinae.mode silent # @vicinae.mode silent
# @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg # @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg
# @vicinae.description Open Privacy in Settings. # @vicinae.description Open Privacy in Settings.
# @vicinae.keywords ["settings", "saved passwords", "camera and microphone", "screen sharing", "file history and trash", "device security", "background apps", "screen sharing permission", "remote desktop permission", "clear recent files", "thumbnails", "application permissions"] # @vicinae.keywords ["settings", "saved passwords", "camera and microphone", "screen sharing", "file history and trash", "device security", "background applications", "screen sharing permission", "remote desktop permission", "clear recent files", "thumbnails", "application permissions"]
exec "$HOME/.config/quickshell/scripts/panama-action" settings-page privacy exec "$HOME/.config/quickshell/scripts/panama-action" settings-page privacy
@@ -5,6 +5,6 @@
# @vicinae.mode silent # @vicinae.mode silent
# @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg # @vicinae.icon ../../icons/hicolor/scalable/apps/panama-settings.svg
# @vicinae.description Open Keyboard in Settings. # @vicinae.description Open Keyboard in Settings.
# @vicinae.keywords ["settings", "keyboard layout", "layout variant", "keyboard options", "num lock on login", "repeat delay", "repeat rate", "keyboard shortcuts", "rebind a shortcut"] # @vicinae.keywords ["settings", "keyboard layout", "layout variant", "keyboard options", "num lock on login", "repeat delay", "repeat rate", "keyboard shortcuts", "rebind a shortcut", "custom shortcut", "add a shortcut", "launch an application with a shortcut"]
exec "$HOME/.config/quickshell/scripts/panama-action" settings-page shortcuts exec "$HOME/.config/quickshell/scripts/panama-action" settings-page shortcuts
+3 -3
View File
@@ -84,7 +84,7 @@ rg -Fq 'onStreamFinished: root.apply(root.target, this.text)' "$settings/ThemeEd
|| fail 'the picked colour does not return through the shared apply path' || fail 'the picked colour does not return through the shared apply path'
rg -Fq 'root.apply(root.target, Qt.rgba(' "$settings/ThemeEditorWells.qml" \ rg -Fq 'root.apply(root.target, Qt.rgba(' "$settings/ThemeEditorWells.qml" \
|| fail 'the colour wheel does not return through the shared apply path' || fail 'the colour wheel does not return through the shared apply path'
for target in 'Open the colour wheel for " + root.role' 'Pick " + root.role + " from the screen'; do for target in 'Open the color wheel for " + root.role' 'Pick " + root.role + " from the screen'; do
rg -Fq "$target" "$settings/ColorWell.qml" \ rg -Fq "$target" "$settings/ColorWell.qml" \
|| fail "a glyph-only button has no spoken name: $target" || fail "a glyph-only button has no spoken name: $target"
done done
@@ -103,7 +103,7 @@ rg -Fq 'onActiveFocusChanged:' "$settings/ColorWell.qml" \
if rg -q 'onTextChanged:.*commit|onTextEdited:.*commit' "$settings/ColorWell.qml"; then if rg -q 'onTextChanged:.*commit|onTextEdited:.*commit' "$settings/ColorWell.qml"; then
fail 'the hex field commits per keystroke' fail 'the hex field commits per keystroke'
fi fi
rg -Fq 'Accessible.name: root.role + " colour, hex"' "$settings/ColorWell.qml" \ rg -Fq 'Accessible.name: root.role + " color, hex"' "$settings/ColorWell.qml" \
|| fail 'the hex field is not programmatically labelled' || fail 'the hex field is not programmatically labelled'
rg -Fq 'activeFocusOnTab: true' "$settings/ColorWell.qml" \ rg -Fq 'activeFocusOnTab: true' "$settings/ColorWell.qml" \
|| fail 'the hex field cannot receive keyboard focus' || fail 'the hex field cannot receive keyboard focus'
@@ -199,7 +199,7 @@ done
# ── Findable by name ──────────────────────────────────────────────────────── # ── Findable by name ────────────────────────────────────────────────────────
for term in 'Themes' 'Theme editor' 'Theme profiles' 'Advanced accent' \ for term in 'Themes' 'Theme editor' 'Theme profiles' 'Advanced accent' \
'Pick colour from screen'; do 'Pick color from screen'; do
rg -Fq "\"$term\"" "$search" || fail "Settings search is missing $term" rg -Fq "\"$term\"" "$search" || fail "Settings search is missing $term"
done done