omarchy-shell's bar plugin replaces waybar on every default path, so the
waybar package, configs, indicator scripts, and toggle/restart/refresh
binaries all go away in this commit.
The four small helper scripts that Bar.qml shells out to (weather.sh and
indicators/*.sh) move with the shell rather than disappear \u2014 they live
at default/quickshell/omarchy-shell/scripts/ now, alongside the rest of
the shell code.
Companion script changes:
- omarchy-shell-ipc gains --if-running so fire-and-forget refresh
callers (toggle-idle, toggle-notification-silencing,
update-available-reset, capture-screenrecording) don't accidentally
spawn the shell when it isn't already up.
- omarchy-theme-set, omarchy-tz-select, omarchy-voxtype-{install,model},
omarchy-toggle-nightlight, omarchy-voxtype-config drop their waybar
branches and comments.
- omarchy-voxtype-status's summary stops claiming it's a Waybar helper.
- omarchy-base.packages drops waybar; install/packaging/fonts.sh's
comment points at the new bar consumer.
- SKILL.md / AGENTS.md / omarchy-menu.jsonc lose their waybar entries.
- test/omarchy-cli-test.sh substitutes a remaining toggle command.
26 lines
690 B
Bash
Executable File
26 lines
690 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-quickshell
|
|
notify-send -a omarchy-action " Voxtype Dictation Ready" "Hold F9 to dictate (or toggle with Super + Ctrl + X)." -t 10000
|
|
fi
|