mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* Try with voxtype * Update delay to prevent skipped characters * Add removal of voxtype * Use -bin package * Fix for yay * Nerdicons! * Use new, subtle nerdfont glyphs instead of standard icons * Do this in the waybar config instead * Make voxtype a permanent fixture so it is not lost on waybar resets * Record purpose * Add Dictation hotkeys * Tweak wording and point to config * Reuse the same help * Better communication * Anticipate moving the package to OPR * Clarify where the packages are coming from * input group not needed when using hyprland hotkey * Explain hotkey off * Allow for changing of the model on right click * Allow config on right click * Be more specific * Focus on config editing with waybar clicks --------- Co-authored-by: Ryan Hughes <ryan@heyoodle.com>
20 lines
539 B
Bash
Executable File
20 lines
539 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Install voxtype and configure it for use.
|
|
|
|
if gum confirm "Install Voxtype + AI model (~400MB) to enable dictation?"; then
|
|
omarchy-pkg-add wtype
|
|
omarchy-pkg-aur-add voxtype-bin
|
|
|
|
# Setup voxtype
|
|
mkdir -p ~/.config/voxtype
|
|
cp $OMARCHY_PATH/default/voxtype/config.toml ~/.config/voxtype/
|
|
|
|
voxtype setup --download
|
|
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
|