mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
19 lines
535 B
Bash
Executable File
19 lines
535 B
Bash
Executable File
#!/bin/bash
|
|
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
|
|
voxtype setup systemd
|
|
|
|
omarchy-restart-waybar
|
|
notify-send " Voxtype Dictation Ready" "Hold Super + Ctrl + X to dictate.\nEdit ~/.config/voxtype/config.toml for options." -t 10000
|
|
fi
|