13 lines
358 B
Bash
Executable File
13 lines
358 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Open Voxtype AI model setup
|
|
|
|
set -e
|
|
|
|
omarchy-launch-floating-terminal-with-presentation "voxtype setup model"
|
|
omarchy-restart-waybar
|
|
OMARCHY_PATH=${OMARCHY_PATH:-$HOME/.local/share/omarchy}
|
|
if quickshell list -p "$OMARCHY_PATH/default/quickshell/omarchy-shell" 2>/dev/null | grep -q '^Instance '; then
|
|
omarchy-restart-bar
|
|
fi
|