The bin names should reflect the thing they manage. `refresh bar` is misleading because the command resets the entire shell.json (which holds plugins beyond just the bar), and `restart quickshell` names the runtime rather than the product. Both now end in `-shell` to match the rest of omarchy-shell. Updates every caller in autostart, the menu, voxtype helpers, and the shell README. No behavior changes.
26 lines
685 B
Bash
Executable File
26 lines
685 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Install and configure Voxtype dictation
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
# Install voxtype and configure it for use.
|
|
|
|
if gum confirm "Install Voxtype + AI model (~150MB) to enable dictation?"; then
|
|
omarchy-pkg-add wtype voxtype-bin
|
|
|
|
# Setup voxtype
|
|
mkdir -p ~/.config/voxtype
|
|
cp $OMARCHY_PATH/default/voxtype/config.toml ~/.config/voxtype/
|
|
|
|
voxtype setup --download --no-post-install
|
|
if omarchy-hw-vulkan; then
|
|
voxtype setup gpu --enable || true
|
|
fi
|
|
voxtype setup systemd
|
|
|
|
omarchy-restart-shell
|
|
notify-send -a omarchy-action " Voxtype Dictation Ready" "Hold F9 to dictate (or toggle with Super + Ctrl + X)." -t 10000
|
|
fi
|